/* ============================================================
   HORTALIZAS VILLA PAULA – Verde Oliva
   Diseño moderno, natural y confiable
   ============================================================ */

/* ============================================================
   1. VARIABLES – MODO CLARO
   ============================================================ */
:root {
  /* Paleta oliva */
  --olive-900:  #2E3A1A;
  --olive-800:  #3D4E22;
  --olive-700:  #556B2F;
  --olive-600:  #6B8E23;
  --olive-500:  #7EA032;
  --olive-400:  #A3B77A;
  --olive-200:  #D5E0B5;
  --olive-100:  #EEF0E0;

  /* Crema */
  --cream-500:  #EDE8D6;
  --cream-300:  #F5F2E8;
  --cream-100:  #FAFAF5;

  /* Oscuro */
  --dark-900:   #1A1A14;
  --dark-700:   #2E2E2E;
  --dark-500:   #5A5A50;
  --dark-300:   #8A8A7A;

  /* Semánticos – luz */
  --color-primary:      var(--olive-700);
  --color-primary-dark: var(--olive-800);
  --color-primary-lite: var(--olive-600);
  --color-accent:       var(--olive-400);
  --color-accent-bg:    var(--olive-100);

  --bg-body:    var(--cream-100);
  --bg-section: #FFFFFF;
  --bg-alt:     var(--cream-300);
  --bg-card:    #FFFFFF;
  --bg-dark:    var(--olive-700);   /* secciones oscuras */
  --bg-contact: #3A4A20;

  --text-h:       var(--dark-700);
  --text-body:    var(--dark-700);
  --text-muted:   var(--dark-500);
  --text-on-dark: rgba(255,255,255,.88);

  --border:    var(--olive-200);
  --sh-sm:     0 2px 10px  rgba(0,0,0,.06);
  --sh-md:     0 8px 30px  rgba(0,0,0,.10);
  --sh-lg:     0 20px 60px rgba(0,0,0,.14);

  --header-bg:     rgba(253,252,248,.96);
  --header-border: rgba(85,107,47,.12);

  --font-sans:    'Poppins', sans-serif;
  --font-serif:   'Playfair Display', serif;

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-full: 9999px;

  --t: .3s ease;
  --section-py: 6rem;
}

/* ============================================================
   2. VARIABLES – MODO OSCURO
   ============================================================ */
[data-theme="dark"] {
  --color-primary:      #8BAF5A;
  --color-primary-dark: #A3C46A;
  --color-primary-lite: #A3B77A;
  --color-accent:       #6B8E23;
  --color-accent-bg:    #1E2A0E;

  --bg-body:    #141A0C;
  --bg-section: #1A2010;
  --bg-alt:     #1E2614;
  --bg-card:    #22280E;  /* Note: re-assigned below */
  --bg-dark:    #0F1A06;
  --bg-contact: #0D1506;

  --text-h:       #E8EAD0;
  --text-body:    #D0D4B8;
  --text-muted:   #8A9070;
  --text-on-dark: rgba(220,230,180,.9);

  --border:    #2A3618;
  --sh-sm:     0 2px 10px  rgba(0,0,0,.3);
  --sh-md:     0 8px 30px  rgba(0,0,0,.45);
  --sh-lg:     0 20px 60px rgba(0,0,0,.6);

  --header-bg:     rgba(20,26,12,.97);
  --header-border: rgba(139,175,90,.15);
}
[data-theme="dark"] { --bg-card: #22280E; }

/* ============================================================
   3. RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--text-body);
  line-height: 1.75;
  overflow-x: hidden;
  transition: background var(--t), color var(--t);
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   4. UTILIDADES
   ============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-py) 0; background: var(--bg-section); }
.section--alt { background: var(--bg-alt); }

.section-header { text-align: center; margin-bottom: 2rem; }

.section-tag {
  display: inline-block;
  background: var(--color-accent-bg);
  color: var(--color-primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
  transition: background var(--t), color var(--t);
}
.section-tag--light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.95);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--text-h);
  margin-bottom: 1rem;
  transition: color var(--t);
}
.section-title em { font-style: italic; color: var(--color-primary); }
.section-title--light { color: #FFF; }
.section-title--light em { color: var(--olive-200); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal--visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(9px); }
}

/* ============================================================
   5. BOTONES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn--lg { padding: .95rem 2rem; font-size: .97rem; }

/* Oliva sólido */
.btn--olive {
  background: var(--olive-700);
  color: #FFF;
  border-color: var(--olive-700);
}
.btn--olive:hover {
  background: var(--olive-800);
  border-color: var(--olive-800);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

/* Crema (sobre fondo oscuro) */
.btn--cream {
  background: var(--cream-300);
  color: var(--olive-800);
  border-color: var(--cream-300);
}
.btn--cream:hover {
  background: #FFF;
  border-color: #FFF;
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

/* Outline oliva */
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: #FFF;
  transform: translateY(-2px);
}

/* WhatsApp header */
.btn--whatsapp {
  background: var(--olive-700);
  color: #FFF;
  border-color: var(--olive-700);
  font-size: .83rem;
  padding: .55rem 1.1rem;
}
.btn--whatsapp:hover {
  background: var(--olive-800);
  border-color: var(--olive-800);
  transform: translateY(-1px);
}

/* Botones de contacto */
.btn--wa-contact {
  background: #25D366;
  color: #FFF;
  border-color: #25D366;
  width: 100%;
  justify-content: center;
}
.btn--wa-contact:hover { background: #128C7E; border-color: #128C7E; transform: translateY(-2px); }

.btn--contact-outline {
  background: transparent;
  color: #FFF;
  border-color: rgba(255,255,255,.5);
  width: 100%;
  justify-content: center;
}
.btn--contact-outline:hover { background: rgba(255,255,255,.1); border-color: #FFF; transform: translateY(-2px); }

.btn--contact-fb {
  background: #1877F2;
  color: #FFF;
  border-color: #1877F2;
  width: 100%;
  justify-content: center;
}
.btn--contact-fb:hover { background: #0C63D4; border-color: #0C63D4; transform: translateY(-2px); }

/* ============================================================
   6. HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--header-border);
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
}
.header--scrolled { box-shadow: var(--sh-md); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 90px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.logo-img {
  width: 80px; height: 80px;
  object-fit: contain;
  border-radius: var(--r-sm);
}
.logo-text {
  display: flex;
  flex-direction: column;
  font-size: .72rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.3;
  transition: color var(--t);
}
.logo-text strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-primary);
}

.nav { display: flex; align-items: center; margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: .1rem; }
.nav__link {
  font-size: .83rem;
  font-weight: 500;
  color: var(--text-h);
  padding: .45rem .8rem;
  border-radius: var(--r-full);
  transition: color var(--t), background var(--t);
}
.nav__link:hover {
  color: var(--color-primary);
  background: var(--color-accent-bg);
}

.header__actions { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }

/* Toggle tema */
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--t);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--color-primary);
  background: var(--color-accent-bg);
  transform: rotate(18deg) scale(1.05);
}
[data-theme="light"] .theme-icon--sun  { display: none; }
[data-theme="light"] .theme-icon--moon { display: block; }
[data-theme="dark"]  .theme-icon--moon { display: none; }
[data-theme="dark"]  .theme-icon--sun  { display: block; }

/* Hamburguesa */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none; border: none;
  cursor: pointer; padding: 5px;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-h);
  border-radius: 2px;
  transition: all var(--t);
  transform-origin: center;
}
.nav-toggle--open span:nth-child(1) { transform: translateY(7px)  rotate(45deg); }
.nav-toggle--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(245,242,230,.97) 0%,
    rgba(245,242,230,.93) 28%,
    rgba(245,242,230,.60) 48%,
    rgba(245,242,230,.15) 65%,
    transparent 80%
  );
}
[data-theme="dark"] .hero__overlay {
  background: linear-gradient(
    to right,
    rgba(14,20,8,.97) 0%,
    rgba(14,20,8,.90) 28%,
    rgba(14,20,8,.60) 48%,
    rgba(14,20,8,.15) 65%,
    transparent 80%
  );
}

.hero__content {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 1.5rem 3.5rem;
  width: 100%;
  animation: fadeUp .9s ease both;
}

/* Texto hero */
.hero__text { max-width: 580px; }

.hero__pretitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--olive-600);
  margin-bottom: .25rem;
  font-weight: 400;
}
[data-theme="dark"] .hero__pretitle { color: var(--olive-400); }

.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--olive-900);
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
[data-theme="dark"] .hero__title { color: #E8EAD0; }

.hero__desc {
  font-size: 1.05rem;
  color: var(--dark-500);
  margin-bottom: 2.25rem;
  line-height: 1.8;
}
[data-theme="dark"] .hero__desc { color: rgba(220,225,190,.8); }

/* Dots del hero */
.hero__dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .5rem;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(85,107,47,.35);
  border: none; cursor: default;
}
.hero__dot--active {
  background: var(--olive-700);
  width: 22px;
  border-radius: 4px;
}

/* Circular badge */
.hero__badge {
  flex-shrink: 0;
  width: 148px; height: 148px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255,255,255,.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  text-align: center;
  padding: 1rem;
  box-shadow: var(--sh-lg);
  animation: fadeUp .9s ease .3s both;
}
.hero__badge svg { color: var(--olive-600); margin-bottom: .25rem; }
.hero__badge span {
  font-size: .82rem;
  font-weight: 700;
  color: var(--olive-800);
  line-height: 1.2;
}

/* Scroll arrow */
.hero__scroll {
  position: absolute;
  bottom: 2.25rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  animation: bounce 2.2s infinite;
  transition: color var(--t);
}
.hero__scroll:hover { color: #FFF; }

/* ============================================================
   8. BENEFICIOS
   ============================================================ */
.benefits {
  background: var(--cream-500);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(163,183,122,.3);
  transition: background var(--t);
}
[data-theme="dark"] .benefits { background: var(--bg-alt); }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem 1.5rem;
  transition: transform var(--t);
}
.benefit-card:hover { transform: translateY(-5px); }

.benefit-card__icon {
  width: 90px; height: 90px;
  background: rgba(255,255,255,.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  transition: background var(--t), box-shadow var(--t);
  box-shadow: 0 3px 14px rgba(85,107,47,.12);
}
.benefit-card__icon svg {
  width: 48px; height: 48px;
  color: var(--olive-700);
}
.benefit-card:hover .benefit-card__icon {
  background: #FFF;
  box-shadow: 0 4px 18px rgba(85,107,47,.18);
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .4rem;
  transition: color var(--t);
}
.benefit-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color var(--t);
}

/* ============================================================
   9. SOBRE NOSOTROS
   ============================================================ */
.about { background: var(--bg-section); padding: 2.5rem 0; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about__image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}

.about__content .section-tag { display: inline-block; margin-bottom: .6rem; }
.about__content .section-title { margin-bottom: 1rem; }
.about__content p {
  color: var(--text-muted);
  margin-bottom: .75rem;
  font-size: .93rem;
  transition: color var(--t);
}
.about__content p:first-of-type { color: var(--text-body); font-size: .97rem; }

/* ============================================================
   10. PRODUCTO DESTACADO
   ============================================================ */
.product {
  background: var(--bg-dark);
  padding: 2.5rem 0;
  transition: background var(--t);
}

.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.product__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}

.product__content .section-tag { display: inline-block; margin-bottom: .6rem; }
.product__content .section-title { margin-bottom: 1.1rem; }

.product__list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.product__list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.product__list svg {
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--olive-400);
}

/* ============================================================
   11. PÚBLICO OBJETIVO
   ============================================================ */
.clients {
  background: var(--cream-500);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(163,183,122,.25);
  border-bottom: 1px solid rgba(163,183,122,.25);
  transition: background var(--t);
}
[data-theme="dark"] .clients { background: var(--bg-alt); }

.clients__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.client-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem .75rem;
  gap: .65rem;
  transition: transform var(--t);
}
.client-item:hover { transform: translateY(-4px); }

.client-item__icon {
  width: auto; height: auto;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-item__icon svg {
  width: 64px; height: 64px;
  color: var(--olive-700);
  stroke-width: 2.4;
  transition: color var(--t);
}
.client-item:hover .client-item__icon svg { color: var(--olive-500); }

.client-item span {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-h);
  transition: color var(--t);
}

/* ============================================================
   12. SOSTENIBILIDAD
   ============================================================ */
.sustainability { background: var(--bg-section); padding: 2.5rem 0; }

.sustainability__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.sustainability__content .section-tag { display: inline-block; margin-bottom: .6rem; }
.sustainability__content .section-title { margin-bottom: .9rem; }
.sustainability__content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: .95rem;
  transition: color var(--t);
}
.sustainability__content p strong { color: var(--color-primary); }

.sustainability__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}

/* ============================================================
   13. CALIDAD E INOCUIDAD
   ============================================================ */
.quality { background: var(--bg-alt); padding: 2rem 0; }

.quality__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.quality__content .section-tag { display: inline-block; margin-bottom: .6rem; }
.quality__content .section-title { margin-bottom: 1rem; }
.quality__content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: .97rem;
  transition: color var(--t);
}
.quality__content p strong { color: var(--text-h); }

.quality__list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.quality__list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  color: var(--text-muted);
  transition: color var(--t);
}
.quality__list li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* Badge BPA */
.quality__badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bpa-badge {
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 5px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  background: var(--bg-card);
  box-shadow: var(--sh-md);
  transition: background var(--t), border-color var(--t);
}
.bpa-badge__top {
  font-family: var(--font-sans);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: .05em;
  transition: color var(--t);
}
.bpa-badge__leaf { color: var(--color-primary); }
.bpa-badge__bottom {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .18em;
  transition: color var(--t);
}

/* ============================================================
   14. GALERÍA
   ============================================================ */
.gallery { background: var(--bg-section); padding: 2.5rem 0; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.gallery__item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(20,35,10,.7));
  color: #FFF;
  font-size: .8rem;
  font-weight: 600;
  padding: .75rem 1rem .6rem;
  opacity: 0;
  transition: opacity var(--t);
}
.gallery__item:hover figcaption { opacity: 1; }

.gallery__footer { text-align: center; }

/* ============================================================
   15. CONTACTO
   ============================================================ */
.contact {
  background: #3A4820;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}
[data-theme="dark"] .contact { background: #1E2810; }

.contact__leaf {
  position: absolute;
  pointer-events: none;
}
.contact__leaf--right {
  bottom: -70px;
  right: -60px;
  width: 420px;
}
.contact__leaf--left {
  top: -60px;
  left: -60px;
  width: 280px;
  transform: rotate(180deg);
}

.contact__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.contact__title {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 1.5rem;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
}
.contact__list-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,.85);
}

.contact__actions {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  min-width: 210px;
}

/* Botones de contacto */
.btn--wa-contact {
  background: #25D366;
  color: #FFF;
  border: 2px solid #25D366;
  width: 100%;
  justify-content: center;
  padding: .7rem 1.5rem;
}
.btn--wa-contact:hover { background: #1da851; border-color: #1da851; transform: translateY(-2px); }

.btn--contact-outline {
  background: rgba(255,255,255,.1);
  color: #FFF;
  border: 2px solid rgba(255,255,255,.35);
  width: 100%;
  justify-content: center;
  padding: .7rem 1.5rem;
}
.btn--contact-outline:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }

.btn--contact-fb {
  background: #1877F2;
  color: #FFF;
  border: 2px solid #1877F2;
  width: 100%;
  justify-content: center;
  padding: .7rem 1.5rem;
}
.btn--contact-fb:hover { background: #0c63d4; border-color: #0c63d4; transform: translateY(-2px); }

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background: #1A2010;
  color: rgba(255,255,255,.72);
}
[data-theme="dark"] .footer { background: #0D1208; }

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 1.5rem 3.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.footer__logo {
  width: 220px; height: 220px;
  object-fit: contain;
  border-radius: var(--r-sm);
  margin-bottom: 1rem;
}
.footer__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: .2rem;
}
.footer__slogan {
  font-size: .88rem;
  font-style: italic;
  color: var(--olive-400);
  margin-bottom: .5rem;
}
.footer__location {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

.footer__nav h4, .footer__contact h4 {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.4rem;
}
.footer__nav ul, .footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer__nav a, .footer__contact a {
  font-size: .87rem;
  color: rgba(255,255,255,.62);
  transition: color var(--t);
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--olive-400); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer__bottom p, .footer__bottom-location {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* ============================================================
   17. BOTÓN FLOTANTE WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: all var(--t);
}
.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,.55);
}
.whatsapp-float__label {
  position: absolute;
  right: 72px;
  white-space: nowrap;
  background: var(--bg-card);
  color: var(--text-h);
  font-size: .78rem;
  font-weight: 700;
  padding: .4rem .9rem;
  border-radius: var(--r-full);
  box-shadow: var(--sh-md);
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--t);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-float__label { opacity: 1; transform: translateX(0); }

/* ============================================================
   18. RESPONSIVE – TABLET (≤ 980px)
   ============================================================ */
@media (max-width: 980px) {
  :root { --section-py: 4.5rem; }

  /* Menú responsive */
  .nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.25rem 1.5rem 1.75rem;
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--t);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-lg);
    margin-left: 0;
  }
  .nav--open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__list { flex-direction: column; gap: .2rem; }
  .nav__link { padding: .8rem 1rem; border-radius: var(--r-sm); font-size: .93rem; }

  .nav-toggle    { display: flex; }
  .btn--whatsapp { display: none; }

  .about__grid,
  .product__grid,
  .sustainability__grid { grid-template-columns: 1fr; gap: 3rem; }

  .about__image img,
  .product__image img,
  .sustainability__image img { height: 360px; }

  .quality__grid { grid-template-columns: 1fr; gap: 3rem; }
  .quality__badge { justify-content: flex-start; }

  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .clients__grid  { grid-template-columns: repeat(2, 1fr); }

  .contact__grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .contact__actions {
    width: 100%;
    min-width: unset;
  }
  .contact__leaf--left { display: none; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .hero__badge { width: 130px; height: 130px; }
  .hero__badge svg { width: 24px; height: 24px; }
  .hero__badge span { font-size: .75rem; }
}

/* ============================================================
   19. RESPONSIVE – MÓVIL (≤ 620px)
   ============================================================ */
@media (max-width: 620px) {
  :root { --section-py: 3.5rem; }

  .hero__content { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 4rem 1.5rem 5rem; }
  .hero__title   { font-size: 3rem; }
  .hero__pretitle { font-size: 1.2rem; }

  .hero__badge {
    width: 120px; height: 120px;
    align-self: flex-end;
    margin-top: -1rem;
  }

  .benefits__grid { grid-template-columns: 1fr; }
  .clients__grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid  { grid-template-columns: repeat(2, 1fr); }

  .contact { padding: 2rem 0; }
  .contact__grid { gap: 1.5rem; }
  .contact__title { font-size: 1.35rem; }
  .contact__leaf--right { width: 260px; bottom: -40px; right: -40px; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .bpa-badge { width: 160px; height: 160px; }
  .bpa-badge__top { font-size: 2rem; }

  .whatsapp-float { width: 54px; height: 54px; bottom: 1.25rem; right: 1.25rem; }
}

/* ============================================================
   20. RESPONSIVE – MUY PEQUEÑO (≤ 400px)
   ============================================================ */
@media (max-width: 400px) {
  .hero__title { font-size: 2.5rem; }
  .clients__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
}
