/* ═══════════════════════════════════════════════════════════════
   AZVER — Stylesheet
   Stack: mobile-first, plain CSS, no framework
   Breakpoint: 768px (portrait → landscape)
═══════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --green-900: #0D2318;
  --green-800: #1B3F2C;
  --green-700: #2D6B47;
  --green-600: #3D8A5C;
  --green-100: #F2F7F4;
  --green-50:  #F8FBF9;

  --gold-500:  #C8922A;
  --gold-400:  #D9A63C;
  --gold-100:  #FDF6E9;

  --white:     #FFFFFF;
  --gray-900:  #1C1C1E;
  --gray-700:  #374151;
  --gray-500:  #6B7280;
  --gray-200:  #E5EAE7;
  --gray-100:  #F5F5F5;

  --wa-green:  #25D366;
  --wa-hover:  #1EBE58;

  --font:      'Plus Jakarta Sans', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);

  --transition: 0.25s ease;
  --nav-h: 68px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── Typography scale ───────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 6vw, 3.75rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.6rem);  font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--gray-700); }

strong { color: var(--gray-900); }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section--white { background: var(--white); }
.section--tint  { background: var(--green-100); }
.section--dark  {
  background: linear-gradient(145deg, var(--green-900) 0%, var(--green-800) 100%);
  color: var(--white);
}
.section--dark p { color: rgba(255,255,255,0.8); }
.section--dark h2 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header--light h2,
.section-header--light p { color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 10px;
}

.section-label--light { color: var(--gold-400); }

.section-sub {
  margin-top: 14px;
  font-size: 1.0625rem;
}

.text-accent { color: var(--gold-500); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary,
.btn-ghost,
.btn-accent,
.btn-wa-nav,
.btn-wa-overlay,
.btn-wa-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
}

.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--green-800);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-accent {
  background: var(--gold-500);
  color: var(--white);
}
.btn-accent:hover { background: var(--gold-400); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ── Section CTA row ────────────────────────────────────────── */
.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  text-align: center;
}
.section-cta p { font-size: 1rem; }

/* ── Checklist ──────────────────────────────────────────────── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--gray-700);
}
.check-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green-700);
}
.check-list--accent li svg { color: var(--gold-500); }

/* ── Feature list (product cards) ──────────────────────────── */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 24px;
}
.feature-list li {
  font-size: 0.9rem;
  color: var(--gray-700);
  padding-left: 14px;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* ── Fade-in animation ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Logo ───────────────────────────────────────────────────── */
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}
.logo-accent { color: var(--gold-400); }

/* ═══════════════════════════════════════════════════════════════
   HEADER & NAV
═══════════════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(13, 35, 24, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding: 0 24px;
  max-width: 1260px;
  margin: 0 auto;
  gap: 20px;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 4px;
  margin: 0 auto;
}

.nav-link {
  display: block;
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Desktop WhatsApp button in nav */
.btn-wa-nav {
  display: none;
  background: var(--wa-green);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-wa-nav:hover { background: var(--wa-hover); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav Overlay ─────────────────────────────────────── */
#nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--green-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#nav-overlay.open { opacity: 1; pointer-events: all; }

#nav-overlay ul {
  list-style: none;
  text-align: center;
  margin-bottom: 32px;
}
#nav-overlay ul li + li { margin-top: 4px; }
#nav-overlay ul a {
  display: block;
  padding: 12px 32px;
  font-size: 1.375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
#nav-overlay ul a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.btn-wa-overlay {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
}
.btn-wa-overlay:hover { background: var(--wa-hover); }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, var(--green-900) 0%, var(--green-800) 55%, #2A5440 100%);
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Full-bleed background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Dark gradient overlay so text stays readable */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,35,24,0.88) 0%,
    rgba(13,35,24,0.70) 50%,
    rgba(13,35,24,0.30) 100%
  );
  z-index: 1;
}

/* Decorative blobs */
.hero-decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2; }
.hero-decor__circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
}
.hero-decor__circle--1 {
  width: 560px; height: 560px;
  background: var(--green-600);
  top: -160px; right: -140px;
}
.hero-decor__circle--2 {
  width: 360px; height: 360px;
  background: var(--gold-500);
  bottom: -100px; left: -80px;
  opacity: 0.04;
}
.hero-decor__circle--3 {
  width: 220px; height: 220px;
  background: var(--white);
  top: 55%; left: 45%;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 80px;
  width: 100%;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(200,146,42,0.12);
  border: 1px solid rgba(200,146,42,0.28);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero h1  { color: var(--white); margin-bottom: 20px; font-size: 2.8rem; }
.hero-sub { font-size: 1.15rem; }

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}

/* Hero image slot */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 380px;
}
.hero-visual__tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
}
.hero-visual__num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-800);
  line-height: 1;
}
.hero-visual__lbl {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Scroll chevron */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: bounce 2.2s infinite;
  z-index: 2;
  display: none;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ═══════════════════════════════════════════════════════════════
   NOSOTROS
═══════════════════════════════════════════════════════════════ */
.nosotros-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.nosotros-img-col {
  position: relative;
}

.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--green-800), var(--green-700));
  min-height: 300px;
  position: relative;
  height: 100%;
}
.img-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-frame--empty::after {
  content: '📷 Foto del campo / equipo';
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nosotros-badge {
  position: absolute;
  bottom: -20px;
  right: -12px;
  background: var(--gold-500);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 120px;
}
.nosotros-badge__num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}
.nosotros-badge__lbl {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 2px;
}

.nosotros-text { padding-top: 20px; }
.nosotros-text h2 { margin-bottom: 16px; }
.nosotros-text p + p { margin-top: 12px; }
.nosotros-text .check-list { margin-top: 24px; }

/* ═══════════════════════════════════════════════════════════════
   PRODUCTOS
═══════════════════════════════════════════════════════════════ */
.productos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.producto-card {
  background: var(--green-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.producto-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.producto-img-wrap {
  position: relative;
  height: 220px;
  background: var(--white);
  overflow: hidden;
}
.producto-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 28px; }
.producto-img-wrap--empty::after {
  content: '📷 Foto del producto';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.875rem;
}

.producto-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-800);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.producto-tag--pro { background: var(--gold-500); color: var(--white); }

.producto-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--green-800);
}
.producto-body h3 { margin-bottom: 10px; color: var(--white); }
.producto-body > p { font-size: 0.9375rem; margin-bottom: 4px; color: rgba(255,255,255,0.75); }
.producto-body .feature-list li { color: rgba(255,255,255,0.75); }
.producto-body .btn-block {
  margin-top: auto;
  background: var(--gold-500);
  color: var(--white);
  border-color: var(--gold-500);
}
.producto-body .btn-block:hover { background: #b07e22; border-color: #b07e22; }

/* ═══════════════════════════════════════════════════════════════
   CULTIVOS / TABS
═══════════════════════════════════════════════════════════════ */
.tabs { margin-top: 0; }

.tab-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding-bottom: 2px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--gray-200);
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: background var(--transition), color var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.tab-btn:hover { color: var(--green-800); background: var(--green-100); }
.tab-btn.active { color: var(--green-800); border-bottom-color: var(--green-700); }

.tab-icon { font-size: 1.1em; }

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

.tab-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tab-text h3 { margin-bottom: 10px; }
.tab-text > p { margin-bottom: 16px; }

.tab-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  background: linear-gradient(145deg, var(--green-800), var(--green-700));
  flex-shrink: 0;
}
.tab-img img { width: 100%; height: 100%; object-fit: cover; }
.tab-img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.875rem;
}
.tab-img--empty::after { content: '📷 Foto del cultivo'; }

/* Avocado stages */
.etapas { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.etapa  { display: flex; gap: 16px; align-items: flex-start; }
.etapa-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
.etapa h4 { margin-bottom: 4px; color: var(--gray-900); }
.etapa p  { font-size: 0.9rem; margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   BENEFICIOS
═══════════════════════════════════════════════════════════════ */
.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.beneficio-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition), transform var(--transition);
}
.beneficio-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.beneficio-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green-800);
}

.beneficio-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--gray-900); }
.beneficio-card p  { font-size: 0.9rem; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   RESULTADOS
═══════════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}

.resultados-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.resultado-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: var(--radius-md);
  padding: 36px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  cursor: pointer;
}
.resultado-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(200,146,42,0.4);
  transform: translateY(-3px);
}
.resultado-card__icon { font-size: 3rem; line-height: 1; }
.resultado-card__icon img { width: 112px; height: 112px; object-fit: contain; }
.resultado-card__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.resultado-card__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-400);
}

.resultados-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.resultados-quote {
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  border: none;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACTO
═══════════════════════════════════════════════════════════════ */
.contacto-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contacto-info h2 { margin-bottom: 14px; }
.contacto-info > p { font-size: 1.0625rem; margin-bottom: 28px; }

.contacto-datos {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contacto-dato {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  transition: background var(--transition), border-color var(--transition);
}
.contacto-dato:hover {
  background: var(--green-100);
  border-color: var(--green-700);
  color: var(--green-800);
}
.contacto-dato svg { flex-shrink: 0; color: var(--green-700); }

/* CTA Panel */
.cta-panel {
  background: var(--green-800);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  color: var(--white);
}
.cta-panel h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 10px; }
.cta-panel p  { color: rgba(255,255,255,0.78); margin-bottom: 0; }

.cta-panel__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-400);
  background: rgba(200,146,42,0.15);
  border: 1px solid rgba(200,146,42,0.3);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px !important;
}

.btn-wa-main {
  width: 100%;
  justify-content: center;
  background: var(--wa-green);
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  margin: 20px 0 12px;
  transition: background var(--transition), transform var(--transition);
}
.btn-wa-main:hover { background: var(--wa-hover); transform: translateY(-1px); }

.cta-panel__note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5) !important;
  margin-top: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}

.logo-img { height: 36px; width: auto; display: block; }
.footer-logo .logo-img { height: 36px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-top: 14px;
  line-height: 1.6;
  max-width: 280px;
}
.footer-hashtag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-400) !important;
}

.footer-nav h4,
.footer-pagina h4,
.footer-contact h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-nav ul,
.footer-pagina ul,
.footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-nav a,
.footer-pagina a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-nav a:hover,
.footer-pagina a:hover,
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 800;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  animation: float-in 0.6s 1s both;
}
.whatsapp-float:hover {
  background: var(--wa-hover);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
@keyframes float-in {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 480px (larger phones)
═══════════════════════════════════════════════════════════════ */
@media (min-width: 480px) {
  .beneficios-grid { grid-template-columns: repeat(2, 1fr); }
  .nosotros-badge  { right: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px (tablet / landscape)
═══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  :root { --nav-h: 72px; }

  .section { padding: 100px 0; }

  /* Hero — larger portrait/tablet font baseline */
  .hero h1   { font-size: clamp(3rem, 7vw, 3.75rem); }
  .hero-sub  { font-size: clamp(1.15rem, 2vw, 1.25rem); }



  /* Hero layout */
  .hero-inner {
    flex-direction: column;
    padding-top: 80px;
  }
  .hero-content { max-width: 620px; }

  /* Nosotros */
  .nosotros-grid {
    flex-direction: row;
    align-items: stretch;
    gap: 64px;
  }
  .nosotros-img-col { flex: 1; }
  .nosotros-text    { flex: 1; padding-top: 0; }

  /* Productos — stays single column until 1024px */

  /* Tabs */
  .tab-btn  { padding: 16px 32px; font-size: 1.125rem; gap: 9px; }
  .tab-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
  .tab-text { flex: 1; }
  .tab-img  { flex: 1; height: 340px; }

  /* Benefits */
  .beneficios-grid { grid-template-columns: repeat(4, 1fr); }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(4, 1fr); }

  /* Results image grid */
  .resultados-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }

  /* Contacto */
  .contacto-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }
  .contacto-info    { flex: 1; }
  .cta-panel-wrap   { flex: 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}

/* ═══════════════════════════════════════════════════════════════
   LANDING PAGES
═══════════════════════════════════════════════════════════════ */

/* Breadcrumb */
.breadcrumb {
  padding: 10px 0 0;
  font-size: 0.8125rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--green-700); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { opacity: 0.5; }
.breadcrumb__current { color: var(--gray-500); }

/* LP hero — compact dark banner */
.lp-hero {
  background:
    radial-gradient(ellipse at 75% 50%, rgba(200,146,42,0.09) 0%, transparent 55%),
    linear-gradient(150deg, var(--green-900) 0%, var(--green-800) 60%, #2A5440 100%);
  padding: calc(var(--nav-h) + 52px) 0 56px;
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.lp-hero::after {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(200,146,42,0.07);
  top: -80px; right: -60px;
  pointer-events: none;
}
.lp-hero .section-label { color: var(--gold-400); }
.lp-hero h1 { color: var(--white); margin: 10px 0 16px; }
.lp-hero p  { color: rgba(255,255,255,0.78); max-width: 600px; }
.lp-hero .hero-actions { margin-top: 28px; }

/* LP crop icon badge */
.lp-crop-icon {
  font-size: 3rem;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

/* Content sections on landing pages */
.lp-body { padding: 72px 0; }
.lp-body h2 { margin-bottom: 16px; }
.lp-body p  { margin-bottom: 14px; }
.lp-body p:last-child { margin-bottom: 0; }

.lp-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

/* Protocol / steps */
.protocol-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}
.protocol-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--green-700);
}
.protocol-step__num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.protocol-step h4 { margin-bottom: 6px; color: var(--green-800); }
.protocol-step p  { font-size: 0.9rem; margin: 0; }

/* Benefit pills grid */
.benefit-pills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}
.benefit-pill {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.benefit-pill__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}
.benefit-pill h4 { font-size: 0.9rem; margin-bottom: 3px; color: var(--gray-900); }
.benefit-pill p  { font-size: 0.85rem; margin: 0; line-height: 1.5; }

/* FAQ */
.faq-section { padding: 72px 0; background: var(--green-100); }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; margin: 0 auto; }

details.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
details.faq-item[open] { box-shadow: var(--shadow-md); }

details.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B3F2C' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--transition);
}
details.faq-item[open] summary::after { transform: rotate(180deg); }

.faq-answer {
  padding: 0 22px 18px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.65;
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
}

/* Internal links bar */
.lp-internal-links {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
}
.lp-internal-links__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.875rem;
}
.lp-internal-links__label {
  font-weight: 600;
  color: var(--gray-500);
  margin-right: 4px;
}
.lp-internal-links a {
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 500;
  transition: background var(--transition);
  white-space: nowrap;
}
.lp-internal-links a:hover { background: var(--gray-200); }
.lp-internal-links a.active { background: var(--green-800); color: var(--white); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px landing page additions
═══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .lp-2col { grid-template-columns: 1fr 1fr; }
  .benefit-pills { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 900px (nav switch point)
═══════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  .nav-links      { display: flex; }
  .btn-wa-nav     { display: inline-flex; }
  .hamburger      { display: none; }
  #nav-overlay    { display: none; }
  .hero-scroll    { display: block; }
  .whatsapp-float { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px (large desktop)
═══════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero-inner { gap: 80px; }
  .hero-img   { max-height: 540px; }
  .img-frame  { min-height: 440px; }
  .productos-grid { grid-template-columns: repeat(2, 1fr); }
}
