/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: #FDFCF9;
  color: #12201A;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

:root {
  --green:   #1A3D2B;
  --green2:  #2A5940;
  --leaf:    #3D7A5A;
  --mint:    #7EC8A0;
  --sage:    #B8D8C8;
  --amber:   #D4A843;
  --cream:   #F7F4EE;
  --paper:   #FDFCF9;
  --ink:     #12201A;
  --muted:   #6B7F74;
  --nav-h:   64px;
}

/* ════════ NAV ════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(253,252,249,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,61,43,0.1);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 2px 20px rgba(26,61,43,0.1); }

.logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; flex-shrink: 0;
}

/* ── LOGO HECHO CON CÓDIGO ── */
.logo-icon {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: transform .3s;
}
.logo:hover .logo-icon { transform: rotate(-8deg) scale(1.1); }

.logo-leaf-shape {
  width: 14px; height: 18px;
  background: var(--mint);
  border-radius: 50% 0 50% 0;
  transform: rotate(45deg);
}
.logo-drop-shape {
  position: absolute; bottom: 4px; right: 5px;
  width: 6px; height: 9px;
  background: var(--amber);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.logo-name {
  font-weight: 700; font-size: 1.15rem;
  color: var(--green); letter-spacing: .07em;
}
.logo-name b { color: var(--amber); font-weight: 700; }

/* desktop links */
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: .88rem; font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--green); }
.nav-links .cta-btn {
  background: var(--green); color: #F7F4EE;
  padding: .5rem 1.3rem; border-radius: 100px;
  font-weight: 600;
  box-shadow: 0 3px 14px rgba(26,61,43,.25);
  transition: background .3s, transform .2s;
}
.nav-links .cta-btn:hover { background: var(--green2); transform: translateY(-1px); color: #F7F4EE; }

/* hamburger */
.hbg {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hbg span {
  display: block; width: 22px; height: 2px;
  background: var(--green); border-radius: 2px;
  transition: .3s;
}
.hbg.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbg.active span:nth-child(2) { opacity: 0; }
.hbg.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu overlay */
#mob-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--paper);
  z-index: 998;
  flex-direction: column;
  padding: 2rem 5%;
  gap: 0;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
#mob-menu.open {
  opacity: 1; transform: none; pointer-events: all;
}
#mob-menu a {
  display: block; padding: 1rem 0;
  border-bottom: 1px solid rgba(26,61,43,.08);
  text-decoration: none; color: var(--ink);
  font-size: 1.1rem; font-weight: 500;
  transition: color .2s, padding-left .2s;
}
#mob-menu a:hover { color: var(--green); padding-left: 6px; }
#mob-menu .mob-cta {
  margin-top: 1.5rem;
  background: var(--green); color: #F7F4EE;
  text-align: center; border-radius: 12px;
  padding: 1rem; font-weight: 600; font-size: 1rem;
  border-bottom: none;
}
#mob-menu .mob-cta:hover { background: var(--green2); padding-left: 0; }

/* ════════ HERO ════════ */
#hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 5rem) 5% 5rem;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}

.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.glow-a {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(126,200,160,.22) 0%, transparent 70%);
  top: -80px; right: -80px;
}
.glow-b {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(212,168,67,.13) 0%, transparent 70%);
  bottom: -40px; left: 5%;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(26,61,43,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,61,43,.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-layout {
  position: relative; z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
}

.hero-inner {
  max-width: 600px;
}

/* ── Tarjetas flotantes ── */
.hero-cards {
  position: relative;
  height: 420px;
  transform: scale(1.2); /* 👈 Esto las hace un 20% más grandes */
  transform-origin: center right; /* 👈 Para que crezcan hacia la izquierda y no se salgan de la pantalla */
}

.hcard {
  position: absolute;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(26,61,43,.18);
}

/* Tarjeta principal — verde */
.hcard-main {
  width: 270px;
  background: var(--green);
  padding: 1.8rem;
  top: 0; left: 40px;
  animation: float1 6s ease-in-out infinite;
  z-index: 2;
}
.hcard-main .hcard-icon {
  width: 52px; height: 52px;
  background: rgba(126,200,160,.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1rem;
}
.hcard-main h3 { font-size: 1.05rem; font-weight: 600; color: var(--cream); margin-bottom: .45rem; }
.hcard-main p  { font-size: .8rem; color: rgba(247,244,238,.6); line-height: 1.6; }
.hcard-main .hcard-pill {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 1rem;
  background: var(--amber); color: var(--green);
  padding: .3rem .8rem; border-radius: 100px;
  font-size: .72rem; font-weight: 700;
}

/* Tarjeta estadística — blanca */
.hcard-stat {
  width: 170px;
  background: #fff;
  padding: 1.5rem;
  bottom: 60px; right: 0;
  animation: float2 5s ease-in-out infinite;
  animation-delay: -2s;
  z-index: 3;
}
.hcard-stat .big-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 900;
  color: var(--green); line-height: 1;
}
.hcard-stat .big-label {
  font-size: .75rem; color: var(--muted); margin-top: 4px; font-weight: 500;
}
.hcard-stat .mini-bar {
  margin-top: .9rem; height: 4px;
  background: var(--sage); border-radius: 2px; overflow: hidden;
}
.hcard-stat .mini-fill {
  height: 100%; width: 60%;
  background: linear-gradient(90deg, var(--leaf), var(--mint));
  border-radius: 2px;
  animation: barw 2s cubic-bezier(.16,1,.3,1) 1s both;
}
@keyframes barw { from { width: 0; } to { width: 60%; } }

/* Tarjeta eco — crema */
.hcard-eco {
  width: 155px;
  background: rgba(212,168,67,.1);
  border: 1px solid rgba(212,168,67,.3);
  padding: 1.3rem;
  bottom: 30px; left: 0;
  animation: float3 7s ease-in-out infinite;
  animation-delay: -4s;
  z-index: 1;
}
.hcard-eco .eco-emoji { font-size: 1.8rem; margin-bottom: .5rem; display: block; }
.hcard-eco p { font-size: .75rem; color: var(--green); font-weight: 500; line-height: 1.55; }

@keyframes float1 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-14px) rotate(-1deg)} }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(2deg)}  50%{transform:translateY(-10px) rotate(2deg)} }
@keyframes float3 { 0%,100%{transform:translateY(0) rotate(-3deg)} 50%{transform:translateY(-12px) rotate(-3deg)} }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(126,200,160,.15);
  border: 1px solid rgba(61,122,90,.25);
  color: var(--green);
  padding: .35rem .9rem; border-radius: 100px;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.6rem;
  animation: up .8s cubic-bezier(.16,1,.3,1) .1s both;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -.02em; color: var(--green);
  animation: up .9s cubic-bezier(.16,1,.3,1) .25s both;
}
h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--amber), #E8B84B);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin-top: 1.4rem;
  font-size: 1.05rem; color: var(--muted); font-weight: 300; line-height: 1.75;
  animation: up .9s cubic-bezier(.16,1,.3,1) .4s both;
}

.hero-btns {
  display: flex; gap: .9rem; flex-wrap: wrap;
  margin-top: 2.2rem;
  animation: up .9s cubic-bezier(.16,1,.3,1) .55s both;
}

.btn-g, .btn-o, .cta-big-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: .9rem 2rem; border-radius: 100px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  transition: transform .3s, box-shadow .3s, background .3s;
}

.btn-icon {
  width: 17px; height: 17px;
  object-fit: contain;
}

.btn-g {
  background: var(--green); color: #F7F4EE;
  box-shadow: 0 5px 24px rgba(26,61,43,.28);
}
.btn-g:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(26,61,43,.35); background: var(--green2); }

.btn-o {
  background: transparent; color: var(--green);
  border: 1.5px solid rgba(26,61,43,.22);
}
.btn-o:hover { transform: translateY(-2px); border-color: var(--green); background: rgba(26,61,43,.05); }

/* SVG iconos por defecto en botones */
.hero-btns svg, .ft-email svg {
    flex-shrink: 0;
}

.hero-checks {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  margin-top: 2.4rem;
  animation: up .9s cubic-bezier(.16,1,.3,1) .7s both;
}
.check-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--muted); font-weight: 500;
}
.check-item svg { width: 15px; height: 15px; color: var(--leaf); flex-shrink: 0; }

@keyframes up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ════════ WAVE ════════ */
.wave { display: block; width: 100%; line-height: 0; overflow: hidden; }

/* ════════ SECTION BASE ════════ */
.section { padding: 6rem 5%; }
.section-cream { background: var(--cream); }
.section-dark  { background: var(--green); }

.s-head { text-align: center; max-width: 580px; margin: 0 auto 4rem; }
.s-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--leaf); margin-bottom: .8rem;
}
.section-dark .s-tag { color: var(--mint); }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -.02em; color: var(--green);
}
h2 em { font-style: italic; color: var(--amber); }
.section-dark h2 { color: var(--cream); }
.s-desc {
  margin-top: .9rem; font-size: .97rem;
  color: var(--muted); font-weight: 300; line-height: 1.75;
}
.section-dark .s-desc { color: rgba(247,244,238,.5); }

/* scroll reveal */
.rev {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.rev.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ════════ BENEFICIOS ════════ */
.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  max-width: 1100px; margin: 0 auto;
}
.ben-card {
  background: var(--paper);
  border: 1px solid rgba(26,61,43,.08);
  border-radius: 18px; padding: 2rem 1.8rem;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .3s;
  cursor: default;
}
.ben-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 40px rgba(26,61,43,.12);
  border-color: rgba(61,122,90,.2);
}
.ben-icon-img {
  width: 1.8rem; height: 1.8rem; margin-bottom: 1.1rem; display: block;
  object-fit: contain;
  transition: transform .35s;
}
.ben-card:hover .ben-icon-img { transform: scale(1.15) rotate(-5deg); }
.ben-card h3 { font-size: 1rem; font-weight: 600; color: var(--green); margin-bottom: .45rem; }
.ben-card p  { font-size: .875rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ════════ PASOS ════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; max-width: 1080px; margin: 0 auto;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 26px; left: 10%; width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage) 20%, var(--sage) 80%, transparent);
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 20px rgba(26,61,43,.25);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
}
.step-card:hover .step-num { transform: scale(1.12) translateY(-4px); box-shadow: 0 12px 32px rgba(26,61,43,.3); }
.step-icon-img {
  width: 1.8rem; height: 1.8rem; margin-bottom: .9rem; display: block;
  object-fit: contain;
  transition: transform .35s;
  margin: 0 auto 0.9rem; /* Centrado para el diseño de pasos */
}
.step-card:hover .step-icon-img { transform: scale(1.1); }
.step-card h3 { font-size: .95rem; font-weight: 600; color: var(--green); margin-bottom: .4rem; }
.step-card p  { font-size: .84rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ════════ CONFIANZA ════════ */
.trust-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; max-width: 1060px; margin: 0 auto;
  align-items: start;
}
.trust-list { display: flex; flex-direction: column; gap: 1.2rem; }
.trust-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px; padding: 1.3rem 1.4rem;
  transition: background .3s, transform .3s;
}
.trust-item:hover { background: rgba(255,255,255,.1); transform: translateX(5px); }
.trust-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(126,200,160,.15);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
}
.nosotros-icon-img {
    width: 1.1rem; height: 1.1rem;
    object-fit: contain;
}
.trust-item h4 { font-size: .9rem; font-weight: 600; color: var(--cream); margin-bottom: .25rem; }
.trust-item p  { font-size: .8rem; color: rgba(247,244,238,.45); font-weight: 300; line-height: 1.6; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.stat-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px; padding: 1.8rem 1.4rem;
  text-align: center;
  transition: transform .35s, background .3s;
}
.stat-box:hover { transform: translateY(-5px); background: rgba(255,255,255,.11); }
.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900; color: var(--amber); line-height: 1;
}
.stat-l { font-size: .78rem; color: rgba(247,244,238,.45); margin-top: 5px; letter-spacing: .04em; }

/* ════════ CTA FINAL Y FORMULARIO ════════ */
#cta { background: var(--cream); padding: 7rem 5%; text-align: center; position: relative; overflow: hidden; }
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(126,200,160,.18), transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-leaf { font-size: 3rem; display: block; margin-bottom: 1.2rem; }
.cta-inner h2 { color: var(--green); }
.cta-inner p { margin-top: 1.2rem; font-size: 1rem; color: var(--muted); font-weight: 300; line-height: 1.75; }

/* Estilos del formulario */
.cta-form { max-width: 500px; margin: 2.5rem auto 0; text-align: left; display: flex; flex-direction: column; gap: 1rem; }
.cta-form input, .cta-form textarea {
  width: 100%; padding: 1rem 1.2rem; border-radius: 12px; border: 1px solid rgba(26,61,43,0.15);
  background: #fff; font-family: 'Outfit', sans-serif; font-size: 0.95rem; color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.cta-form input:focus, .cta-form textarea:focus {
  outline: none; border-color: var(--mint); box-shadow: 0 0 0 4px rgba(126,200,160,0.15);
}
.cta-form textarea { resize: vertical; min-height: 120px; }

.cta-big-btn {
  justify-content: center; gap: 10px;
  margin-top: 0.5rem; border: none; cursor: pointer;
  background: var(--green); color: var(--cream);
  box-shadow: 0 7px 32px rgba(26,61,43,.28);
}
.cta-big-btn:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 14px 50px rgba(26,61,43,.35); background: var(--green2); }
.cta-fine { margin-top: 1.5rem; font-size: .8rem; color: var(--muted); text-align: center; }
.cta-fine a { color: var(--green); text-decoration: underline dotted; }

/* ════════ POPUP ════════ */
#welcome-popup {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(18, 32, 26, 0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
#welcome-popup.show { opacity: 1; pointer-events: auto; }
.popup-content {
  background: var(--paper); border-radius: 20px; padding: 2.5rem;
  max-width: 450px; width: 90%; text-align: center;
  position: relative; transform: translateY(20px); transition: transform 0.4s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
#welcome-popup.show .popup-content { transform: translateY(0); }
.popup-close {
  position: absolute; top: 15px; right: 15px; background: none; border: none;
  font-size: 1.8rem; cursor: pointer; color: var(--muted); transition: color 0.2s;
}
.popup-close:hover { color: var(--green); }
.popup-content h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--green); margin-bottom: 0.8rem; }
.popup-content p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.6; }

/* ════════ FOOTER ════════ */
footer {
  background: var(--ink);
  padding: 3.5rem 5% 2rem;
}
.ft-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ft-brand .logo-name { color: var(--sage); }
.ft-brand .logo-name b { color: var(--amber); }
.ft-tagline { margin-top: .9rem; font-size: .84rem; color: rgba(255,255,255,.3); line-height: 1.7; max-width: 260px; }
.eco-pill {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 1.2rem;
}
.eco-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--mint);
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{ box-shadow: 0 0 0 0 rgba(126,200,160,.5); } 50%{ box-shadow: 0 0 0 5px rgba(126,200,160,0); } }
.eco-pill span { font-size: .75rem; color: var(--mint); font-weight: 500; }

.ft-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.ft-col ul a { text-decoration: none; color: rgba(255,255,255,.4); font-size: .85rem; transition: color .2s; }
.ft-col ul a:hover { color: var(--sage); }
.ft-email { display: flex; align-items: center; gap: 7px; color: var(--sage); text-decoration: none; font-size: .88rem; font-weight: 500; transition: color .2s; }
.ft-email:hover { color: var(--amber); }
.ft-phone { display: block; margin-top: .7rem; font-size: 1.05rem; font-weight: 600; color: rgba(255,255,255,.65); text-decoration: none; }
.ft-phone:hover { color: var(--sage); }

.ft-bottom {
  max-width: 1100px; margin: 1.8rem auto 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .8rem;
}
.ft-bottom p { font-size: .78rem; color: rgba(255,255,255,.2); }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr 360px; gap: 2.5rem; }
}

@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .ben-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .trust-wrap { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 680px) {
  /* Activar hamburguesa */
  .nav-links { display: none; }
  .hbg { display: flex; }
  #mob-menu { display: flex; }

  .ben-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .ft-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }

  h1 { font-size: 2.5rem; }
  .hero-btns { flex-direction: column; }
  .btn-g, .btn-o { width: 100%; }
  .hero-checks { gap: .8rem; }
  .section { padding: 4rem 5%; }
  .cta-big-btn { width: 100%; }
}

@media (max-width: 400px) {
  h1 { font-size: 2.1rem; }
  .stats-grid { grid-template-columns: 1fr; }
}