*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --nav-height: 64px;
  --nav-text-size: 14px;
  --nav-text-color: #1a1a1a;
  --nav-link-gap: 20px;
  --nav-brand-gap: 14px;
  --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}
body { font-family: var(--font-main); background: #fafaf8; color: var(--nav-text-color); }
.site-wrapper { max-width: 1000px; margin: 0 auto; }

/* ─── Navbar ─── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #ffffff; border-bottom: 1px solid #e8e4de;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}
.navbar__left { display: flex; align-items: center; gap: var(--nav-brand-gap); }
.navbar__logo { height: 40px; width: auto; flex-shrink: 0; display: block; }
.navbar__brand, .nav-link {
  font-family: var(--font-main); font-size: var(--nav-text-size);
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--nav-text-color); line-height: 1;
}
.navbar__right { display: flex; align-items: center; gap: var(--nav-link-gap); margin-left: auto; }
.nav-link {
  text-decoration: none; white-space: nowrap;
  position: relative; padding-bottom: 2px; transition: color 0.2s ease;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: #2d5a27; transition: width 0.25s ease;
}
.nav-link:hover { color: #2d5a27; }
.nav-link:hover::after { width: 100%; }

/* ─── Hamburger ─── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #1a1a1a; transition: all 0.25s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  background: #ffffff; border-bottom: 1px solid #e8e4de;
  padding: 16px 24px 24px; gap: 18px;
  position: sticky;
  top: var(--nav-height);
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 13px; letter-spacing: 0.14em; }

/* ─── Product Hero ─── */
.product-hero { padding: 40px; text-align: center; }
.product-hero__image { max-width: 100%; height: auto; display: block; margin: 0 auto; }

#frutos-headline {
  scroll-margin-top: var(--nav-height);
}

#inicio, #frutos, #equipos, #compromisos, #contacto {
  scroll-margin-top: var(--nav-height);
}
.hero-headline { padding: 20px 40px 60px; text-align: center; overflow: hidden; }
.hero-headline__text {
  font-family: var(--font-main); font-size: 22px; font-weight: 700;
  line-height: 1.2; letter-spacing: 0.02em; color: #1a1a1a;
  white-space: nowrap; text-transform: uppercase; display: block; text-align: center;
}

/* ─── Fruits Section ─── */
.fruits-section { display: flex; flex-direction: column; align-items: center; padding: 10px 40px 60px; gap: 36px; }
.brand-logo { width: 200px; max-width: 100%; height: auto; flex-shrink: 0; object-fit: contain; display: block; margin-top: -20px; 	margin-bottom: 20px; }
.fruit-grid { display: flex; gap: 40px; justify-content: center; }
.fruit-card { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.fruit-card__image { width: 200px; height: auto; object-fit: cover; display: block; }
.fruit-card__title { font-size: 15px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #333; }
.fruit-card__desc { font-size: 15px; font-weight: 700; line-height: 1.6; color: #555; text-align: center; }

/* ─── Equipos Section ─── */
.equipos-section { display: flex; flex-direction: column; align-items: center; padding: 20px 40px 60px; gap: 32px; }
.equipos-desc { font-size: 16px; font-weight: 700; line-height: 1.6; color: #555; text-align: center; max-width: 600px; }
.equipos-logo { width: 300px; max-width: 90%; height: auto; display: block; margin: 20px 0; }
.video-wrapper { width: 800px; max-width: 90%; aspect-ratio: 16 / 9; }
.video-wrapper iframe { width: 100%; height: 100%; display: block; }

/* ─── Compromisos Section ─── */
.compromisos-section { display: flex; flex-direction: column; align-items: center; padding: 60px 40px; gap: 24px; }
.compromisos-text { font-size: 16px; font-weight: 700; line-height: 1.7; color: #555; text-align: center; max-width: 600px; }

/* ─── Footer ─── */
.site-footer { display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 40px; background-color: #cc0066; border-top: none; margin-top: 40px; gap: 20px; }
.footer-col { display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center; }
.footer-line { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #ffffff; line-height: 1.6; }
.footer-col--left .footer-line { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; color: #ffffff; line-height: 1.2; }
.footer-tagline { font-size: 11px !important; letter-spacing: 0.1em !important; color: rgba(255,255,255,0.7) !important; margin-top: 6px; }
.footer-line--heading { color: #ffffff; margin-bottom: 4px; font-size: 15px; }
.footer-contact { text-decoration: none; color: rgba(255,255,255,0.85); transition: color 0.2s; text-transform: lowercase; font-weight: 700; }
.footer-contact:hover { color: #ffffff; }

/* ─── Mobile ─── */
@media (max-width: 700px) {
  .navbar { padding: 0 20px; }
  .navbar__right { display: none; }
  .hamburger { display: flex; }
  .navbar__brand { font-size: 11px; letter-spacing: 0.08em; }

  .product-hero { padding: 20px; }

  .hero-headline { padding: 20px 20px 40px; }
  .hero-headline__text { font-size: 15px; white-space: normal; }

  .fruits-section { padding: 20px 20px 40px; gap: 24px; }
  .fruit-grid { flex-direction: column; align-items: center; gap: 40px; }
  .fruit-card__image { width: 80%; height: auto; }

  .equipos-section { padding: 40px 20px; }
  .equipos-desc { max-width: 100%; }

  .compromisos-section { padding: 40px 20px; }
  .compromisos-text { max-width: 100%; }

  .site-footer { grid-template-columns: 1fr; padding: 30px 20px; gap: 32px; }
}
