/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue-dark : #0d47a1;
  --blue      : #1565c0;
  --blue-pale : #e8f4fd;
  --white     : #ffffff;
  --gray-50   : #f5f5f5;
  --gray-200  : #e0e0e0;
  --gray-500  : #757575;
  --gray-800  : #212121;
  --font      : 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h     : 60px;
  --radius    : 10px;
  --tr        : .28s ease;
  --shadow-card: 0 1px 6px rgba(0,0,0,.08);
}
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body { font-family: var(--font); color: var(--gray-800); background: var(--gray-50); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: var(--nav-h);
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--tr); gap: 12px;
}
.nav.scrolled { box-shadow: 0 2px 14px rgba(0,0,0,.1); }
.nav-logo-link { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo-img { height: 36px; width: auto; object-fit: contain; }
#navMenu { display: none; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-link { font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--blue); position: relative; padding-bottom: 2px; transition: opacity var(--tr); }
.nav-link:hover { opacity: .7; }
.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-social { display: flex; align-items: center; gap: 10px; }
.nav-social-icon { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; color: var(--blue); transition: opacity var(--tr); }
.nav-social-icon:hover { opacity: .65; }
.nav-social-icon svg { width: 18px; height: 18px; }
.nav-toggle { display: flex; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; background: none; border: none; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--blue); border-radius: 2px; transition: all var(--tr); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── SUBMENU ── */
.nav-item--has-sub { position: relative; }
.nav-submenu { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(0,0,0,.10); list-style: none; min-width: 200px; z-index: 400; overflow: hidden; }
.nav-item--has-sub:hover .nav-submenu { display: block; }
.nav-submenu a { display: block; padding: 10px 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--blue); transition: background var(--tr); }
.nav-submenu a:hover { background: var(--blue-pale); }

/* ── HERO ── */
.nos-hero {
  position: relative; height: 420px;
  background-image: url('../assets/images/frutifresca-nosotros.jpeg');
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.nos-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.50); }
.nos-hero__content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 24px; }
.nos-hero__eyebrow { display: block; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; opacity: .85; margin-bottom: 12px; }
.nos-hero__title { font-size: clamp(48px, 10vw, 88px); font-weight: 900; text-transform: uppercase; letter-spacing: -1px; line-height: 1; text-shadow: 0 4px 24px rgba(0,0,0,.3); margin-bottom: 16px; }
.nos-hero__line { width: 56px; height: 3px; background: #fff; border-radius: 2px; margin: 0 auto 16px; opacity: .7; }
.nos-hero__sub { font-size: 15px; font-weight: 500; opacity: .9; }
.nos-hero__wave { position: absolute; bottom: 0; left: 0; right: 0; height: 60px; z-index: 3; }

/* ── SECCIONES ── */
.nos-section { padding: 72px 0; background: var(--white); }
.nos-section--alt { background: var(--gray-50); }

.nos-block__icon { font-size: 2.5rem; margin-bottom: 16px; }
.nos-block__title { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 900; color: var(--blue); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; line-height: 1.2; }
.nos-block__title--white { color: var(--white); }
.nos-block__text { font-size: 15px; color: var(--gray-500); line-height: 1.75; margin-bottom: 14px; }
.nos-block--center { text-align: center; max-width: 680px; margin: 0 auto; }

/* Botón */
.nos-btn {
  display: inline-flex; align-items: center;
  margin-top: 20px; padding: 12px 28px;
  background: var(--blue); color: var(--white);
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  border-radius: 30px; transition: background var(--tr);
}
.nos-btn:hover { background: var(--blue-dark); color: var(--white); }
.nos-btn--white { background: var(--white); color: var(--blue); }
.nos-btn--white:hover { background: var(--blue-pale); color: var(--blue-dark); }

/* Contacto info */
.nos-contact-info { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.nos-contact-info p { font-size: 14px; color: var(--gray-500); }
.nos-contact-info a { color: var(--blue); font-weight: 600; }

/* Split layout */
.nos-split { display: flex; flex-direction: column; gap: 40px; }
.nos-split__content { flex: 1; }
.nos-split__img img { border-radius: var(--radius); box-shadow: 0 4px 24px rgba(0,0,0,.10); width: 100%; }
.nos-split__images { display: flex; flex-direction: column; gap: 20px; align-self: stretch; }
.nos-split__images img { border-radius: var(--radius); box-shadow: 0 4px 24px rgba(0,0,0,.10); width: 100%; height: 100%; object-fit: cover; flex: 1; }

/* ── COBERTURA ── */
.nos-cobertura { padding: 72px 0; background: var(--blue); }
.nos-cobertura__inner { display: flex; flex-direction: column; gap: 40px; }
.nos-cobertura__content { flex: 1; }
.nos-cobertura__sub { font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 24px; margin-top: 12px; }
.nos-estados { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.nos-estado { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: var(--white); padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.nos-cobertura__note { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 4px; line-height: 1.6; }
.nos-cobertura__map img { border-radius: var(--radius); box-shadow: 0 4px 24px rgba(0,0,0,.2); width: 100%; }

/* ── FOOTER ── */
.footer { background: var(--blue); padding: 48px 0 0; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; text-align: center; }
.footer-logo { height: 38px; width: auto; object-fit: contain; margin: 0 auto 12px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.65; max-width: 240px; margin: 0 auto; }
.footer-col-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.7); transition: color var(--tr); }
.footer-links a:hover { color: var(--white); }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-contact li { display: flex; align-items: flex-start; justify-content: center; gap: 7px; font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.4; }
.footer-contact svg { flex-shrink: 0; margin-top: 1px; color: rgba(255,255,255,.7); }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.footer-social-btn { width: 34px; height: 34px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--blue); transition: opacity var(--tr); }
.footer-social-btn:hover { opacity: .8; }
.footer-bottom { margin-top: 36px; border-top: 1px solid rgba(255,255,255,.15); padding: 18px 20px; text-align: center; font-size: 11px; color: rgba(255,255,255,.55); }

/* ── RESPONSIVE ── */
@media (min-width: 768px) {
  .nos-split { flex-direction: row; align-items: center; }
  .nos-split--reverse { flex-direction: row-reverse; }
  .nos-split__img { flex: 0 0 45%; }
  .nos-split__images { flex: 0 0 45%; }
  .nos-cobertura__inner { flex-direction: row; align-items: center; }
  .nos-cobertura__map { flex: 0 0 50%; }
}

@media (min-width: 900px) {
  :root { --nav-h: 64px; }
  .nav { padding: 0 32px; }
  .nav-toggle { display: none; }
  #navMenu { display: block; }
  .nos-hero { height: 480px; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1.6fr 1fr; gap: 40px; text-align: left; }
  .footer-logo { margin: 0 0 12px; }
  .footer-tagline { margin: 0; }
  .footer-contact li { justify-content: flex-start; }
  .footer-social { justify-content: flex-start; }
}

/* ── DISTRIBUIDORES ── */
.nos-distribuidores { margin: 32px 0 24px; }
.nos-distribuidores__title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 16px; }
.nos-distribuidores__grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.nos-dist-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-card); }
.nos-dist-card h4 { font-size: 13px; font-weight: 800; color: var(--blue); text-transform: uppercase; margin-bottom: 6px; }
.nos-dist-card p { font-size: 13px; color: var(--gray-500); line-height: 1.5; margin-bottom: 6px; }
.nos-dist-card a { font-size: 13px; font-weight: 700; color: var(--blue); }
.nos-dist-card a:hover { color: var(--blue-dark); }
.nos-dist-card--soon { border-color: var(--blue); border-style: dashed; }
.nos-dist-soon { display: inline-block; background: var(--blue); color: var(--white); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: 100px; }

@media (min-width: 600px) { .nos-distribuidores__grid { grid-template-columns: repeat(2, 1fr); } }