/* ============================================================
   ANDES GARLIC EXPORT — style.css
   Palette: verde #1a3d1f | dorado #b8860b | crema #f8f4ed
   ============================================================ */

:root {
  --green-dark:   #1a3d1f;
  --green-mid:    #2d6a35;
  --green-light:  #4a8c52;
  --gold:         #b8860b;
  --gold-light:   #d4a017;
  --cream:        #f8f4ed;
  --cream-dark:   #f0e9db;
  --white:        #ffffff;
  --gray-100:     #f5f5f5;
  --gray-400:     #9ca3af;
  --gray-600:     #4b5563;
  --gray-800:     #1f2937;
  --wa-green:     #25d366;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.16);
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   .25s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* UTILITIES */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-desc { color: var(--gray-600); max-width: 600px; margin: 1rem auto 0; }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(26, 61, 31, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,134,11,.25);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: var(--shadow-lg); }

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 64px; width: 64px; border-radius: 50%; object-fit: cover; }

/* Main nav */
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; gap: 4px; justify-content: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,.88);
  font-size: .85rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all var(--transition);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--gold-light);
  background: rgba(184,134,11,.12);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  border: 1px solid rgba(184,134,11,.2);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  color: rgba(255,255,255,.82);
  font-size: .83rem;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.dropdown-menu li a:hover { color: var(--gold-light); background: rgba(184,134,11,.1); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; margin-left: auto; }

/* Language flags */
.lang-flags { display: flex; gap: 6px; }
.flag-btn {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 50%;
  padding: 2px;
  transition: all var(--transition);
  display: flex;
}
.flag-btn img { width: 28px; height: 20px; object-fit: cover; border-radius: 3px; }
.flag-btn:hover,
.flag-btn.active { border-color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 950;
  opacity: 0; visibility: hidden;
  transition: all .3s ease;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 88vw);
  height: 100vh;
  background: var(--green-dark);
  z-index: 960;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(184,134,11,.2);
}
.mobile-logo { height: 48px; width: 48px; border-radius: 50%; object-fit: cover; }
.close-menu {
  background: rgba(255,255,255,.08);
  border: none;
  color: var(--white);
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.close-menu:hover { background: rgba(255,255,255,.16); }

.mobile-nav-list { padding: 16px 0; flex: 1; }
.mobile-nav-link {
  display: block;
  padding: 14px 24px;
  color: rgba(255,255,255,.88);
  font-size: .95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all var(--transition);
}
.mobile-nav-link:hover { color: var(--gold-light); padding-left: 32px; background: rgba(184,134,11,.08); }

.mobile-menu-footer {
  padding: 24px;
  border-top: 1px solid rgba(184,134,11,.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-lang-flags { display: flex; gap: 12px; }
.mobile-lang-flags .flag-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-size: .8rem;
}
.mobile-lang-flags .flag-btn.active { border-color: var(--gold); color: var(--gold-light); }
.mobile-lang-flags .flag-btn img { width: 22px; height: 16px; border-radius: 2px; }

.mobile-whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  transition: opacity var(--transition);
}
.mobile-whatsapp-cta:hover { opacity: .9; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,61,31,.82) 0%, rgba(26,61,31,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 48px;
  margin-top: 72px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  padding: 4px 12px;
  border: 1px solid rgba(212,160,23,.4);
  border-radius: 20px;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,134,11,.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  border: 2px solid rgba(255,255,255,.5);
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* Hero controls */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  transition: all var(--transition);
}
.dot.active { background: var(--gold); transform: scale(1.3); }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 2rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: all var(--transition);
}
.hero-arrow:hover { background: rgba(255,255,255,.25); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--green-dark);
  padding: 44px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid rgba(184,134,11,.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 96px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  border-radius: var(--radius-lg);
  height: 520px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .85rem;
  box-shadow: var(--shadow-md);
}
.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.about-text p { color: var(--gray-600); margin-bottom: 1rem; }
.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 20px; }
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.feature-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.feature strong { display: block; font-weight: 600; color: var(--green-dark); margin-bottom: 2px; }
.feature p { font-size: .85rem; color: var(--gray-600); margin: 0; }

/* ============================================================
   PRODUCTS INTRO
   ============================================================ */
.products-intro { padding: 72px 0 48px; background: var(--cream); }
.products-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-top: .5rem;
}

/* ============================================================
   PRODUCT SECTIONS
   ============================================================ */
.product-section { padding-bottom: 80px; }
.product-section.alt-bg { background: var(--cream); }

.product-hero {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}
.product-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,61,31,.9) 0%, rgba(26,61,31,.35) 60%, transparent 100%);
}
.product-hero .container { position: relative; z-index: 2; padding-bottom: 36px; }
.product-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.product-hero-sub { color: var(--gold-light); font-size: .85rem; font-weight: 500; letter-spacing: .05em; }

.product-content { padding-top: 56px; }

/* Tabs */
.product-tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn {
  padding: 9px 20px;
  border: 2px solid var(--green-mid);
  border-radius: 50px;
  background: transparent;
  color: var(--green-dark);
  font-weight: 600;
  font-size: .85rem;
  transition: all var(--transition);
}
.tab-btn:hover { background: var(--green-mid); color: var(--white); }
.tab-btn.active { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Product detail grid */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Gallery */
.main-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/3;
}
.main-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.main-img-wrap:hover .main-product-img { transform: scale(1.03); }
.thumb-row { display: flex; gap: 10px; margin-top: 12px; }
.thumb {
  width: 72px; height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  flex-shrink: 0;
}
.thumb:hover, .thumb.active { border-color: var(--gold); }

/* Product info */
.product-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.product-desc { color: var(--gray-600); margin-bottom: 1.75rem; line-height: 1.7; }

.product-meta { display: flex; flex-direction: column; gap: 12px; margin: 1.5rem 0; }
.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius);
}
.meta-icon { font-size: 1.1rem; flex-shrink: 0; }
.meta-item strong { display: block; font-size: .75rem; font-weight: 600; text-transform: uppercase; color: var(--gray-400); letter-spacing: .05em; }
.meta-item span { font-size: .9rem; color: var(--green-dark); font-weight: 500; }

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  padding: 13px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
  margin-top: .5rem;
}
.btn-whatsapp:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.btn-whatsapp.large { padding: 16px 30px; font-size: 1rem; }

/* Packaging tags */
.ingredients-box, .varieties-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 1rem;
}
.ingredients-box strong, .varieties-box strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.ingredients-box li { font-size: .875rem; color: var(--gray-600); padding: 3px 0; }

.packaging-options { margin-bottom: 1.25rem; }
.packaging-options strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.packaging-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 5px 13px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 500;
}

/* Farms grid */
.farms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 1.25rem 0;
}
.farm-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 12px 14px;
  border-left: 3px solid var(--green-mid);
}
.farm-card strong { display: block; font-size: .83rem; color: var(--green-dark); margin-bottom: 2px; }
.farm-card p { font-size: .75rem; color: var(--gray-600); }

/* Certs */
.cert-logos { display: flex; gap: 10px; flex-wrap: wrap; margin: 1rem 0; }
.cert-badge {
  padding: 5px 14px;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
}

/* Specs grid */
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 1.25rem 0; }
.spec-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 14px;
  border-top: 3px solid var(--gold);
}
.spec-card strong { display: block; font-size: .82rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.spec-detail { display: flex; flex-direction: column; gap: 4px; }
.spec-detail span { font-size: .78rem; color: var(--gray-600); }

/* Process */
.process-section { margin-top: 60px; }
.process-section h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.process-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-size: .83rem;
  color: var(--gray-600);
}
.step-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   ENVASES BLOCK
   ============================================================ */
.envases-block {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 2px solid var(--cream-dark);
}
.envases-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.envases-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--gold);
  opacity: .35;
}
.envases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.envases-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 680px;
}
.envase-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.envase-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  transition: all var(--transition);
}
.envase-img-wrap:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.envase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.envase-img-wrap:hover img { transform: scale(1.06); }
.envase-card span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.3;
}

/* Logo text in header */
.logo-text {
  color: rgba(255,255,255,.9);
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .02em;
  display: none;
}
.logo-text strong { font-weight: 700; color: var(--gold-light); }

/* ============================================================
   CONTACT — Big WhatsApp CTA
   ============================================================ */
.contact-section { position: relative; }

.contact-cta-wrap {
  position: relative;
  background: var(--green-dark);
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}

/* subtle radial glow behind the content */
.contact-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184,134,11,.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact-cta-content .section-eyebrow { color: var(--gold-light); }

.contact-cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}

.contact-cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin: 0;
  line-height: 1.7;
}

.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--wa-green);
  color: var(--white);
  padding: 22px 40px;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 12px;
  box-shadow: 0 8px 40px rgba(37,211,102,.4);
  transition: all var(--transition);
}
.contact-wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 50px rgba(37,211,102,.55);
  background: #20bc5a;
}
.contact-wa-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.contact-wa-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.contact-wa-number {
  font-size: .9rem;
  font-weight: 400;
  opacity: .85;
  letter-spacing: .03em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0e2210;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  height: 64px; width: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); max-width: 280px; }
.footer-links h5, .footer-contact h5 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-links li a { font-size: .875rem; color: rgba(255,255,255,.5); display: block; padding: 4px 0; transition: color var(--transition); }
.footer-links li a:hover { color: var(--white); }
.footer-contact p { font-size: .875rem; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.footer-wa {
  display: inline-block;
  background: var(--wa-green);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 600;
  margin-top: 8px;
  transition: opacity var(--transition);
}
.footer-wa:hover { opacity: .88; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--gold-light); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--wa-green);
  color: var(--white);
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 800;
  transition: all var(--transition);
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .product-detail-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .envases-grid { grid-template-columns: repeat(3, 1fr); }
  .envases-grid.three-col { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
}

@media (max-width: 768px) {
  /* Header */
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .lang-flags { display: none; }
  .header-inner { justify-content: space-between; }
  .header-right { margin-left: 0; }

  /* Hero */
  .hero-content { padding: 0 24px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-arrow { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  /* About */
  .about { padding: 64px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 320px; }
  .about-badge { right: 0; bottom: -12px; }

  /* Products */
  .product-hero { height: 220px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-tabs { gap: 6px; }
  .tab-btn { font-size: .8rem; padding: 8px 14px; }
  .farms-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-steps { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-section { padding: 64px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .envases-grid { grid-template-columns: repeat(2, 1fr); }
  .envases-grid.three-col { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
  .thumb { width: 60px; height: 50px; }
}

/* ── Carrusel campos especias ── */
.campo-carousel-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: grab;
  user-select: none;
}
.campo-carousel-wrap:active { cursor: grabbing; }

.campo-carousel-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: campoScroll 30s linear infinite;
}
.campo-carousel-wrap:hover .campo-carousel-track {
  animation-play-state: paused;
}

.campo-carousel-track img {
  height: 220px;
  width: 320px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  pointer-events: none;
}

@keyframes campoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .campo-carousel-track img {
    height: 160px;
    width: 240px;
  }
}
