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

:root {
  /* ── PALETA WEEE GLOBAL · basada en weee-flow ── */
  --brand:      #0c4714;   /* verde profundo primario */
  --brand-dk:   #08340e;   /* verde primario · hover */
  --brand-lime: #70bc39;   /* lima acento */
  --brand-dark: #0a2410;   /* verde casi negro · superficies oscuras */
  --brand-gray: #776f71;   /* gris neutro */
  --brand-mint: #86d38d;   /* verde-menta claro · texto sobre oscuro */
  --brand-lime2:#a8d16f;   /* lima suave */
  --brand-bg:   #eef5e9;   /* crema-lima muy clara */
  --brand-bdr:  #d3e7c5;   /* borde claro */
  --cream:      #f6f5f3;   /* crema base de página */
  /* Grises de sistema */
  --gray900: #151011;
  --gray700: #3a3436;
  --gray500: #776f71;
  --gray400: #a9a3a4;
  --gray300: #e2e1de;
  --gray100: #f0efec;
  --gray50:  #f3f2ee;
  --white:   #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: var(--gray900);
  background: var(--cream);
  line-height: 1.65;
  padding-bottom: 44px;
}

/* ── MOCK BANNER ── */
.mock-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--brand-dark); color: rgba(255,255,255,.8);
  text-align: center; padding: .5rem 1rem;
  font-size: 12px; font-weight: 500;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mock-banner a { color: var(--brand-mint); }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,36,16,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(112,188,57,.14);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; flex-shrink: 0; }
.logo-mark {
  width: 36px; height: 36px; background: var(--brand); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: white; letter-spacing: -.5px;
}
.logo-text { font-weight: 600; font-size: 15px; color: white; line-height: 1.1; }
.logo-text span { display: block; font-size: 10px; font-weight: 400; color: var(--brand-mint); letter-spacing: .06em; }
.nav-links { display: flex; align-items: center; gap: .1rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,.6);
  font-size: 13.5px; font-weight: 500;
  padding: .4rem .7rem; border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,.06); }
.nav-links a.active { color: var(--brand-mint); font-weight: 600; }
.nav-cta {
  background: var(--brand) !important; color: white !important;
  padding: .5rem 1.1rem !important; border-radius: 8px !important;
  font-weight: 600 !important; letter-spacing: -.01em;
}
.nav-cta:hover { background: var(--brand-dk) !important; color: white !important; }
.nav-cta.active { background: var(--brand-dk) !important; color: white !important; }

/* ── Botón hamburguesa (se inyecta desde app.js; oculto en desktop) ── */
.nav-toggle { display: none; background: transparent; border: none; cursor: pointer; width: 42px; height: 42px; padding: 0; align-items: center; justify-content: center; margin-left: auto; }
.nav-toggle span { position: relative; display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, top .25s; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
nav.open .nav-toggle span { background: transparent; }
nav.open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
nav.open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ── LAYOUT ── */
section { padding: 5rem 2rem; }
.container { max-width: 1280px; margin: 0 auto; }

.tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-bg);
  border: 1px solid var(--brand-bdr); border-radius: 100px;
  padding: .3rem .9rem; margin-bottom: 1.25rem;
}
.tag-inv {
  color: var(--brand-mint); background: rgba(79,183,143,.1);
  border-color: rgba(79,183,143,.25);
}
.h2 {
  font-size: clamp(1.85rem, 4vw, 2.9rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -.03em; color: var(--gray900);
  margin-bottom: .6rem;
}
.h2 em { font-style: italic; color: var(--brand); }
.h2-inv { color: white; }
.lead { font-size: 1rem; color: var(--gray500); line-height: 1.8; margin-bottom: 2.5rem; }
.lead-inv { color: rgba(255,255,255,.55); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  text-decoration: none; border-radius: 10px;
  font-size: 14.5px; font-weight: 600; padding: .875rem 1.75rem;
  transition: .2s; border: none; cursor: pointer; font-family: inherit;
  letter-spacing: -.01em;
}
.btn-green  { background: var(--brand); color: white; }
.btn-green:hover { background: var(--brand-dk); transform: translateY(-1px); }
.btn-dark   { background: var(--brand-dark); color: white; }
.btn-dark:hover { background: #162529; }
.btn-ghost  { background: transparent; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { border-color: rgba(255,255,255,.4); color: white; }

/* SVG icons */
.icon { display: block; width: 22px; height: 22px; flex-shrink: 0; }
.icon-sm { display: block; width: 18px; height: 18px; flex-shrink: 0; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: var(--brand-dark);
  padding: 6rem 2rem 3.5rem;
  margin-top: 68px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -150px; right: -150px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79,183,143,.18) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-title {
  font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -.04em; color: white;
  margin-bottom: .75rem; max-width: 800px;
}
.page-hero-title em { color: var(--brand-mint); font-style: italic; }
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,.5); max-width: 580px; line-height: 1.8; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--brand); padding: 4rem 2rem; text-align: center; }
.cta-strip-title { font-size: 1.55rem; font-weight: 800; letter-spacing: -.03em; color: white; margin-bottom: .6rem; }
.cta-strip-sub { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.cta-strip .btn-ghost { border-color: rgba(255,255,255,.4); }

/* ── HERO ── */
#inicio {
  min-height: 100vh; background: var(--brand-dark);
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 68px; position: relative; overflow: hidden;
}
#inicio::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(112,188,57,.20) 0%, transparent 70%);
  pointer-events: none;
}
#inicio::after {
  content: ''; position: absolute; bottom: -120px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(112,188,57,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 11.5px; font-weight: 500; color: var(--brand-mint);
  background: rgba(79,183,143,.08); border: 1px solid rgba(79,183,143,.2);
  border-radius: 100px; padding: .4rem 1rem; margin-bottom: 2rem;
}
.hero-pill-dot { width: 6px; height: 6px; background: var(--brand-lime); border-radius: 50%; }
.hero-eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--brand-lime); margin-bottom: 1.25rem; }
.hero-title { font-size: clamp(2.7rem, 7vw, 5.4rem); font-weight: 900; line-height: 1.05; letter-spacing: -.04em; color: white; margin-bottom: 1.5rem; max-width: 900px; }
.hero-title .hl { color: var(--brand-mint); }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.5); max-width: 560px; line-height: 1.85; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; margin-bottom: 4rem; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; overflow: hidden; max-width: 820px;
}
.hs { background: rgba(255,255,255,.02); padding: 1.5rem 1.75rem; }
.hs-n { font-size: 2rem; font-weight: 800; color: white; letter-spacing: -.04em; line-height: 1; margin-bottom: .3rem; }
.hs-n em { color: var(--brand-mint); font-style: normal; font-size: .68em; }
.hs-l { font-size: 11.5px; color: rgba(255,255,255,.35); line-height: 1.4; }

/* ── NOSOTROS ── */
.nos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.nos-visual {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #2a5048 55%, #3a7a63 100%);
  border-radius: 20px; aspect-ratio: 4/3;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 1.5rem; position: relative; overflow: hidden;
}
.nos-visual-wm { font-size: 6rem; font-weight: 900; letter-spacing: -.05em; color: rgba(255,255,255,.07); line-height: 1; }
.nos-badges { position: absolute; top: 1.5rem; left: 1.5rem; right: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.nos-badge { background: rgba(255,255,255,.07); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: .7rem 1rem; }
.nos-badge-l { font-size: 10.5px; color: rgba(255,255,255,.45); margin-bottom: .2rem; }
.nos-badge-v { font-size: 13px; font-weight: 600; color: white; }
.nos-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.nos-feat { display: flex; gap: 1rem; align-items: flex-start; }
.nos-feat-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--brand-bg); border: 1px solid var(--brand-bdr);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--brand);
}
.nos-feat-t { font-size: 14px; font-weight: 700; margin-bottom: .2rem; color: var(--gray900); }
.nos-feat-d { font-size: 13.5px; color: var(--gray500); line-height: 1.6; }
.certs { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 2rem; }
.cert { font-size: 11.5px; font-weight: 600; color: var(--brand-dark); background: var(--brand-bg); border: 1px solid var(--brand-bdr); border-radius: 6px; padding: .3rem .7rem; }

/* ── SOLUCIONES ── */
.sol-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.sol-card { background: #fff; border: 1px solid var(--gray300); border-radius: 16px; padding: 1.25rem 1.25rem 1.75rem; transition: border-color .2s, box-shadow .2s, transform .2s; }
.sol-card:hover { border-color: var(--brand-bdr); box-shadow: 0 8px 32px rgba(79,183,143,.1); transform: translateY(-3px); }
.sol-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.sol-name { font-size: 17px; font-weight: 700; color: var(--gray900); margin-bottom: .4rem; }
.sol-desc { font-size: 13.5px; color: var(--gray500); margin-bottom: 1.25rem; line-height: 1.65; }
.sol-link { font-size: 13px; font-weight: 600; color: var(--brand); text-decoration: none; display: flex; align-items: center; gap: .3rem; }
/* Foto por tarjeta (marco blanco = padding de la tarjeta) + ícono badge */
.sol-media { position: relative; margin-bottom: 1.4rem; }
.sol-photo { height: 156px; border-radius: 12px; background-size: cover; background-position: center; box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); }
.sol-card .sol-name, .sol-card .sol-desc, .sol-card .sol-link { padding: 0 .75rem; }
.sol-card .sol-icon { position: absolute; left: 12px; bottom: 12px; margin-bottom: 0; width: 46px; height: 46px; border: 2px solid #fff; box-shadow: 0 8px 20px -8px rgba(0,0,0,.5); }

/* ── METODOLOGÍA ── */
.met-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.met-header .lead { margin-bottom: 0; max-width: 500px; }
.steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; top: 27px; left: calc(10% + 27px); right: calc(10% + 27px); height: 2px; background: linear-gradient(90deg, var(--brand-mint), var(--brand)); z-index: 0; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 .5rem; position: relative; z-index: 1; }
.step-n { width: 54px; height: 54px; border-radius: 50%; background: var(--brand); color: white; font-size: 16px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; border: 4px solid var(--brand-bg); }
.step-t { font-size: 14px; font-weight: 700; color: var(--gray900); margin-bottom: .35rem; }
.step-d { font-size: 12.5px; color: var(--gray500); line-height: 1.55; }
.met-cta { text-align: center; margin-top: 3.5rem; }

/* ── IMPACTO ── */
.imp-head { text-align: center; margin-bottom: 3.5rem; }
.imp-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(79,183,143,.08); border: 1px solid rgba(79,183,143,.1); border-radius: 20px; overflow: hidden; margin-bottom: 2rem; }
.imp-s { background: rgba(255,255,255,.02); padding: 2.5rem 2rem; text-align: center; }
.imp-sn { font-size: 2.8rem; font-weight: 900; color: white; letter-spacing: -.05em; line-height: 1; margin-bottom: .5rem; }
.imp-su { color: var(--brand-mint); font-size: .55em; }
.imp-sl { font-size: 12.5px; color: rgba(255,255,255,.4); line-height: 1.4; }
.imp-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.imp-card { background: rgba(255,255,255,.03); border: 1px solid rgba(79,183,143,.1); border-radius: 14px; padding: 1.5rem; }
.imp-ct { font-size: 13px; font-weight: 700; color: var(--brand-mint); margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
.imp-cd { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.65; }

/* ── COBERTURA ── */
.cob-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.cob-sector-title { font-size: 13px; font-weight: 700; color: var(--gray900); margin: 2rem 0 .75rem; }
.sectors { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.sector { display: flex; align-items: center; gap: .75rem; padding: .8rem 1rem; border: 1px solid var(--gray300); border-radius: 10px; font-size: 13.5px; font-weight: 500; color: var(--gray700); }
.sector-dot { width: 7px; height: 7px; background: var(--brand); border-radius: 50%; flex-shrink: 0; }
.cob-nums { display: flex; flex-direction: column; gap: 1.25rem; }
.cob-num { padding: 2rem; background: var(--gray50); border: 1px solid var(--gray300); border-radius: 16px; }
.cob-nv { font-size: 3.25rem; font-weight: 900; color: var(--brand); letter-spacing: -.05em; line-height: 1; margin-bottom: .4rem; }
.cob-nl { font-size: 14px; color: var(--gray900); font-weight: 600; }
.cob-nd { font-size: 12.5px; color: var(--gray500); margin-top: .2rem; }

/* ── BLOG ── */
.blog-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card { background: white; border: 1px solid var(--gray300); border-radius: 16px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.blog-card:hover { box-shadow: 0 10px 35px rgba(0,0,0,.07); transform: translateY(-3px); }
.blog-img { height: 175px; display: flex; align-items: flex-end; padding: 1rem; }
.blog-tag { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: white; background: rgba(0,0,0,.35); backdrop-filter: blur(4px); border-radius: 4px; padding: .25rem .6rem; }
.blog-body { padding: 1.5rem; }
.blog-title { font-size: 15px; font-weight: 700; color: var(--gray900); margin-bottom: .65rem; line-height: 1.5; }
.blog-excerpt { font-size: 13.5px; color: var(--gray500); margin-bottom: 1rem; line-height: 1.65; }
.blog-meta { font-size: 12px; color: var(--gray400); display: flex; justify-content: space-between; }

/* ── CONTACTO ── */
.con-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 5rem; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.fg { display: flex; flex-direction: column; gap: .4rem; }
.fg.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 600; color: var(--gray700); }
input, select, textarea { font-family: inherit; font-size: 14px; padding: .75rem 1rem; border: 1.5px solid var(--gray300); border-radius: 8px; color: var(--gray900); background: white; outline: none; transition: border-color .2s; width: 100%; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); }
input::placeholder, textarea::placeholder { color: var(--gray400); }
textarea { min-height: 100px; resize: vertical; }
.btn-form { width: 100%; background: var(--brand); color: white; border: none; padding: 1rem; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit; transition: background .2s; margin-top: 1.25rem; letter-spacing: -.01em; }
.btn-form:hover { background: var(--brand-dk); }
.promise-box { background: var(--brand-bg); border: 1px solid var(--brand-bdr); border-radius: 16px; padding: 1.75rem; margin-bottom: 1.5rem; }
.promise-t { font-size: 15px; font-weight: 700; color: var(--brand-dark); margin-bottom: .5rem; }
.promise-d { font-size: 13.5px; color: var(--brand); line-height: 1.65; }
.channels { display: flex; flex-direction: column; gap: .75rem; }
.channel { display: flex; align-items: center; gap: .875rem; padding: 1rem 1.25rem; border: 1px solid var(--gray300); border-radius: 10px; }
.ch-icon { color: var(--brand); flex-shrink: 0; }
.ch-label { font-size: 11px; color: var(--gray400); }
.ch-val { font-size: 13.5px; font-weight: 600; color: var(--gray900); }

/* ── FOOTER ── */
footer { background: var(--brand-dark); padding: 3rem 2rem; }
.foot-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.foot-logo { display: flex; align-items: center; gap: .75rem; }
.foot-copy { font-size: 12.5px; color: rgba(255,255,255,.35); line-height: 1.6; }
.foot-copy strong { color: rgba(255,255,255,.6); }
.foot-certs { display: flex; gap: .5rem; flex-wrap: wrap; }
.foot-cert { font-size: 11px; color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 4px; padding: .25rem .6rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .sol-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(3,1fr); }
  .steps::before { display: none; }
  .met-header { grid-template-columns: 1fr; gap: 2rem; }
  .imp-cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 1.5rem; }
  .nos-grid, .cob-layout, .con-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .imp-stats { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .sol-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 4.5rem 1.5rem 2.5rem; }
}
@media (max-width: 480px) {
  .hero-stats, .imp-stats { grid-template-columns: 1fr 1fr; }
  .sectors { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   v2 · CAPA DE VIDA / MARKETING
   ════════════════════════════════════════════════════════ */

/* ── Reveal al hacer scroll ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
.reveal.d6 { transition-delay: .48s; }

@keyframes floatY    { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes glowPulse { 0%,100% { opacity: .5; } 50% { opacity: .95; } }
@keyframes marquee   { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes heroIn    { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes blink     { 0%,100% { opacity: 1; } 50% { opacity: .2; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation: none !important; }
}

/* ── Hero con más vida ── */
#inicio::before { animation: floatY 9s ease-in-out infinite, glowPulse 7s ease-in-out infinite; }
#inicio::after  { animation: floatY 12s ease-in-out infinite reverse; }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 78% 62% at 50% 42%, #000 28%, transparent 76%);
  mask-image: radial-gradient(ellipse 78% 62% at 50% 42%, #000 28%, transparent 76%);
}
.hero-inner > * { animation: heroIn .85s cubic-bezier(.16,1,.3,1) both; }
.hero-inner > *:nth-child(1) { animation-delay: .04s; }
.hero-inner > *:nth-child(2) { animation-delay: .12s; }
.hero-inner > *:nth-child(3) { animation-delay: .20s; }
.hero-inner > *:nth-child(4) { animation-delay: .28s; }
.hero-inner > *:nth-child(5) { animation-delay: .36s; }
.hero-inner > *:nth-child(6) { animation-delay: .44s; }
.hero-inner > *:nth-child(7) { animation-delay: .52s; }
.proof-line { display: flex; align-items: center; gap: .6rem; margin: -3rem 0 2.5rem; font-size: 13px; color: rgba(255,255,255,.5); flex-wrap: wrap; }
.proof-line strong { color: var(--brand-mint); font-weight: 600; }
.proof-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-lime); box-shadow: 0 0 0 4px rgba(112,188,57,.22); animation: blink 1.9s ease-in-out infinite; }
.hs { transition: background .25s; }
.hs:hover { background: rgba(79,183,143,.07); }

/* ── Botones con más presencia ── */
.btn-green { box-shadow: 0 10px 26px -12px rgba(12,71,20,.55); }
.btn-green:hover { box-shadow: 0 14px 30px -12px rgba(12,71,20,.7); }
/* CTA sobre fondos oscuros → lima (estilo weee-flow) */
#inicio .btn-green,
.sec-dark .btn-green {
  background: var(--brand-lime); color: var(--brand-dark);
  box-shadow: 0 10px 26px -10px rgba(112,188,57,.55);
}
#inicio .btn-green:hover,
.sec-dark .btn-green:hover {
  background: #82cf4a; color: var(--brand-dark);
  box-shadow: 0 14px 32px -10px rgba(112,188,57,.72);
}
.btn .arr { display: inline-block; transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }

/* ── Encabezado de sección centrado ── */
.sec-head { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.sec-head .lead { margin: 0 auto; }
.sec-cta { text-align: center; margin-top: 3rem; }
.sec-tinted { background: #e9f1e4; }
.sec-mint   { background: linear-gradient(135deg, #e2f0d6, #d3e8c6); }
.sec-dark { background: var(--brand-dark); position: relative; overflow: hidden; }
.sec-dark .h2 { color: #fff; }
.sec-dark .h2 em { color: var(--brand-mint); }
.sec-dark .lead { color: rgba(255,255,255,.55); }
.sec-dark::before {
  content: ''; position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 780px; height: 440px;
  background: radial-gradient(ellipse, rgba(112,188,57,.16), transparent 70%);
  pointer-events: none; animation: glowPulse 8s ease-in-out infinite;
}

/* ── Barra de confianza (marquee) ── */
.trust { background: var(--brand-dark); border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); padding: 2rem 0; overflow: hidden; }
.trust-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 1.4rem; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 2.75rem; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.trust-item { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.5); font-size: 14px; font-weight: 600; white-space: nowrap; }
.trust-item svg { color: var(--brand-lime); flex-shrink: 0; }

/* ── Sección "El reto" (pain points) ── */
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.pain-card { background: #fff; border: 1px solid var(--gray300); border-radius: 18px; padding: 2.25rem; position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; }
.pain-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--brand), var(--brand-lime)); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.16,1,.3,1); }
.pain-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px -22px rgba(46,116,87,.35); border-color: var(--brand-bdr); }
.pain-card:hover::before { transform: scaleX(1); }
.pain-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--brand-bg); color: var(--brand); display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; }
.pain-t { font-size: 17px; font-weight: 700; margin-bottom: .55rem; color: var(--gray900); }
.pain-d { font-size: 14px; color: var(--gray500); line-height: 1.7; }

/* ── Preview de soluciones (tarjetas-enlace) ── */
a.sol-card { text-decoration: none; display: block; }
a.sol-card .sol-link { pointer-events: none; }

/* ── Por qué Weee (filas con icono) ── */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .5rem 2rem; }
.why-row { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem; border-radius: 16px; transition: background .25s; }
.why-row:hover { background: var(--brand-bg); }
.why-ic { width: 50px; height: 50px; border-radius: 13px; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 10px 22px -9px rgba(79,183,143,.8); }
.why-t { font-size: 16px; font-weight: 700; color: var(--gray900); margin-bottom: .3rem; }
.why-d { font-size: 13.5px; color: var(--gray500); line-height: 1.65; }

/* ── Testimonio / prueba social ── */
.quote-wrap { max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.quote-mark { font-family: Georgia, serif; font-size: 5rem; line-height: .5; color: var(--brand-mint); opacity: .45; }
.quote-text { font-size: clamp(1.3rem, 2.8vw, 2rem); font-weight: 600; line-height: 1.42; letter-spacing: -.02em; color: #fff; margin: 1.25rem 0 2.25rem; }
.quote-text em { color: var(--brand-mint); font-style: normal; }
.quote-by { display: flex; align-items: center; justify-content: center; gap: .9rem; }
.quote-av { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-lime)); display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 15px; }
.quote-meta { text-align: left; }
.quote-name { font-size: 14px; font-weight: 700; color: #fff; }
.quote-role { font-size: 12.5px; color: rgba(255,255,255,.45); }

/* ── CTA final mejorada ── */
.cta-strip { position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; top: -120px; right: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%); pointer-events: none; }
.cta-strip::after { content: ''; position: absolute; bottom: -140px; left: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(112,188,57,.22), transparent 70%); pointer-events: none; }
.cta-strip .container { position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-strip .btn-white { background: #fff; color: var(--brand-dark); }
.cta-strip .btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(0,0,0,.35); }
.cta-strip .btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.cta-strip .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: rgba(10,36,16,.98); backdrop-filter: blur(14px);
    padding: .9rem 1.1rem 1.3rem; border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 26px 44px -22px rgba(0,0,0,.7);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    max-height: calc(100vh - 68px); overflow-y: auto;
  }
  nav.open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .8rem .9rem; font-size: 15px; border-radius: 9px; }
  .nav-links a.active { background: rgba(255,255,255,.06); }
  .nav-links .nav-cta { margin-top: .5rem; text-align: center; justify-content: center; }
}
@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ════════════════════════════════════════════════════════
   v3 · IMÁGENES
   ════════════════════════════════════════════════════════ */

/* ── Foto de fondo en page-hero (subpáginas) ── */
.page-hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(10,36,16,.93) 22%, rgba(12,71,20,.72) 100%); }
.page-hero::before { z-index: 1; }
.page-hero-inner { z-index: 2; }

/* ── Foto de fondo genérica en secciones oscuras ── */
.sec-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.sec-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,36,16,.86), rgba(10,36,16,.93)); }
.sec-dark::before { z-index: 1; }
.sec-dark .container { position: relative; z-index: 2; }

/* ── Nosotros: visual con foto real ── */
.nos-visual.nos-photo { background-size: cover; background-position: center; }
.nos-visual.nos-photo .nos-badge { background: rgba(46,116,87,.55); }

/* ── Blog: miniaturas con foto + duotono de marca ── */
.blog-img { position: relative; background-size: cover; background-position: center; }
.blog-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(79,183,143,.32), rgba(46,116,87,.5)); }
.blog-img .blog-tag { position: relative; z-index: 1; }

/* ── Sección "split" (foto + texto) ── */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center; }
.split-media { border-radius: 22px; overflow: hidden; aspect-ratio: 5/4; background-size: cover; background-position: center; position: relative; box-shadow: 0 32px 64px -32px rgba(46,116,87,.55); }
.split-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 40%, rgba(8,24,12,.42)); }
.split-badge { position: absolute; z-index: 1; left: 1.25rem; bottom: 1.25rem; right: 1.25rem; background: rgba(10,36,16,.66); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: .9rem 1.1rem; }
.split-badge-t { font-size: 13px; font-weight: 700; color: #fff; }
.split-badge-d { font-size: 12px; color: rgba(255,255,255,.6); }
.split-list { display: flex; flex-direction: column; gap: .9rem; margin: 1.75rem 0 2rem; }
.split-li { display: flex; gap: .7rem; align-items: flex-start; font-size: 14.5px; color: var(--gray700); }
.split-li svg { color: var(--brand); flex-shrink: 0; margin-top: 3px; }

/* ── Cobertura: tarjetas de zona con foto ── */
.zone-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.zone-card { background: #fff; border: 1px solid var(--gray300); border-radius: 16px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.zone-card:hover { transform: translateY(-4px); box-shadow: 0 20px 46px -24px rgba(46,116,87,.32); }
.zone-img { height: 152px; background-size: cover; background-position: center; }
.zone-body { padding: 1.6rem; }
.zone-t { font-size: 15px; font-weight: 700; color: var(--gray900); margin-bottom: .4rem; }
.zone-d { font-size: 13px; color: var(--gray500); line-height: 1.6; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .zone-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   v5 · INICIO · CONTRASTE (fondos oscuros / imagen)
   ════════════════════════════════════════════════════════ */

/* ── Hero: verde profundo con textura de imagen (estilo atica) ── */
.home #inicio { background: var(--brand-dark); }
.home .hero-grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
}

/* ── Video de fondo del hero (desktop; móvil usa la imagen) ── */
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; border: 0; pointer-events: none; background: var(--brand-dark); }
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(155deg, rgba(10,36,16,.85) 0%, rgba(12,71,20,.78) 52%, rgba(8,24,12,.93) 100%); }
.home #inicio .hero-grid-bg { z-index: 2; }
.home #inicio .hero-inner { z-index: 3; }
/* Sin foto lateral: el texto del hero ocupa todo el ancho */
.home .hero-top { grid-template-columns: 1fr; }
.home .hero-desc { max-width: 620px; }
/* ════════════════════════════════════════════════════════
   v6 · PORTADA · imagen montacargas + degradado (Hero PNG)
   ════════════════════════════════════════════════════════ */
/* Imagen a la derecha, fundida con el fondo por degradado */
.hero-media { position: absolute; top: 0; right: 0; bottom: 0; width: 58%; z-index: 0;
  background: url(/img/montacargas.jpg) center right / cover no-repeat; }
.hero-media::before { content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--brand-dark) 0%, rgba(10,36,16,.8) 14%, rgba(10,36,16,.28) 40%, transparent 72%); }
.hero-media::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8,24,12,.28) 100%); }

/* Overlay sobre la imagen: Sistemas Circulares / Cero Residuos + íconos */
.hero-media-cap { position: absolute; top: 15%; right: 4.5%; z-index: 2; text-align: right; }
.hero-media-title { font-size: clamp(1.05rem, 1.9vw, 1.65rem); font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: #fff; line-height: 1.18; text-shadow: 0 2px 20px rgba(0,0,0,.55); }
.hero-media-title span { color: var(--brand-mint); }
.hero-media-icons { display: flex; gap: 1.35rem; justify-content: flex-end; margin-top: 1.15rem; }
.hmi { display: flex; flex-direction: column; align-items: center; gap: .45rem; }
.hmi-ic { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(134,211,141,.5); background: rgba(10,36,16,.35); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; color: var(--brand-mint); }
.hmi-l { font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.8); }

/* Columna de texto a la izquierda */
.home #inicio .hero-inner { position: relative; z-index: 3; width: 100%; }
.home .hero-text { max-width: 540px; text-align: left; text-shadow: 0 1px 12px rgba(8,24,12,.5); }
.home .hero-title { margin-bottom: 1.4rem; }
.home .hero-desc { color: rgba(255,255,255,.72); max-width: 520px; margin-bottom: 2.25rem; }
.home .hero-actions { margin: 0 0 1.6rem; }
.home .proof-line { margin: 0; color: rgba(255,255,255,.62); }
.proof-ic, .hero-pill-ic { color: var(--brand-lime); flex-shrink: 0; }
.hero-desc .hl-t, .proof-line .hl-t { color: var(--brand-mint); font-weight: 600; }

/* Pill glassy con separador */
.home .hero-pill { color: rgba(255,255,255,.85); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); }
.hero-pill-sep { display: inline-block; width: 1px; height: 12px; background: rgba(255,255,255,.28); margin: 0 .45rem; }

/* Botón "Ver cómo funciona el sistema" */
.btn-video { background: rgba(255,255,255,.05); color: #fff; border: 1.5px solid rgba(255,255,255,.2); box-shadow: none; }
.btn-video:hover { border-color: rgba(134,211,141,.65); background: rgba(255,255,255,.09); transform: translateY(-1px); }
.btn-video-ic { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4); color: #fff; }
.btn-video:hover .btn-video-ic { border-color: var(--brand-lime); color: var(--brand-lime); }

/* Modal de video "cómo funciona" */
.video-modal { position: fixed; inset: 0; z-index: 10001; background: rgba(5,15,8,.82); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; transition: opacity .25s ease; }
.video-modal.open { opacity: 1; }
.video-modal[hidden] { display: none; }
.video-modal-inner { position: relative; width: min(960px, 100%); }
.video-modal video { width: 100%; border-radius: 14px; display: block; box-shadow: 0 30px 80px -20px rgba(0,0,0,.7); }
.video-modal-close { position: absolute; top: -46px; right: 0; width: 38px; height: 38px; border-radius: 50%; border: none; background: rgba(255,255,255,.12); color: #fff; font-size: 22px; line-height: 1; cursor: pointer; transition: background .2s; }
.video-modal-close:hover { background: rgba(255,255,255,.22); }

@media (max-width: 900px) {
  .hero-media { width: 100%; }
  .hero-media::before { background: linear-gradient(180deg, rgba(10,36,16,.7) 0%, rgba(10,36,16,.86) 55%, rgba(8,24,12,.95) 100%); }
  .hero-media::after { display: none; }
  .hero-media-cap { display: none; }
  .home .hero-text { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }                  /* respeta reduce-motion: muestra la imagen */
}

/* ════════════════════════════════════════════════════════
   v4 · MODAL · SOLICITAR DIAGNÓSTICO
   ════════════════════════════════════════════════════════ */
.modal-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(15,26,28,.62); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; transition: opacity .25s ease; }
.modal-overlay.open { opacity: 1; }
.modal-overlay[hidden] { display: none; }
.modal { background: #fff; border-radius: 20px; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 2.25rem; position: relative; box-shadow: 0 40px 90px -25px rgba(0,0,0,.45); transform: translateY(14px) scale(.985); transition: transform .3s cubic-bezier(.16,1,.3,1); }
.modal-overlay.open .modal { transform: none; }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 34px; height: 34px; border: none; background: var(--gray100); border-radius: 9px; font-size: 20px; color: var(--gray500); cursor: pointer; line-height: 1; transition: background .2s; }
.modal-close:hover { background: var(--gray300); color: var(--gray900); }
.modal-head { margin-bottom: 1.5rem; padding-right: 2rem; }
.modal-title { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; color: var(--gray900); margin: .55rem 0 .4rem; line-height: 1.2; }
.modal-sub { font-size: 13.5px; color: var(--gray500); line-height: 1.65; }
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.mf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.modal-done { text-align: center; padding: 1.5rem 0 .5rem; }
.modal-done-ic { width: 66px; height: 66px; border-radius: 50%; background: var(--brand-bg); color: var(--brand); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.modal-done-t { font-size: 1.3rem; font-weight: 800; color: var(--gray900); margin-bottom: .5rem; }
.modal-done-d { font-size: 14px; color: var(--gray500); line-height: 1.65; margin-bottom: 1.5rem; }
@media (max-width: 560px) {
  .mf-row { grid-template-columns: 1fr; }
  .modal { padding: 1.75rem; }
}

/* ════════════════════════════════════════════════════════
   v5 · HERO CON IMAGEN + CARRUSEL DE SERVICIOS
   ════════════════════════════════════════════════════════ */

/* ── Hero a dos columnas (texto + imagen) ── */
.hero-top { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; margin-bottom: 3rem; }
.hero-visual { position: relative; }
.hero-img { border-radius: 24px; aspect-ratio: 4 / 3.1; background-size: cover; background-position: center; box-shadow: 0 36px 72px -34px rgba(46,116,87,.6); }
.hero-img-badge { position: absolute; left: -16px; bottom: 24px; background: #fff; border: 1px solid var(--brand-bdr); border-radius: 14px; padding: .8rem 1.05rem; box-shadow: 0 22px 44px -20px rgba(46,116,87,.45); display: flex; align-items: center; gap: .7rem; }
.hero-img-badge-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-img-badge-n { font-size: 18px; font-weight: 800; color: var(--gray900); line-height: 1; letter-spacing: -.02em; }
.hero-img-badge-l { font-size: 11.5px; color: var(--gray500); }

/* ── Carrusel ── */
.carousel { position: relative; }
.car-track { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: .5rem .25rem 1.5rem; -ms-overflow-style: none; scrollbar-width: none; }
.car-track::-webkit-scrollbar { display: none; }
.car-track > .sol-card { flex: 0 0 calc((100% - 2.5rem) / 3); scroll-snap-align: start; }
.car-nav { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: .5rem; }
.car-btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--brand-bdr); background: #fff; color: var(--brand-dark); font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .2s; flex-shrink: 0; }
.car-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-2px); }
.car-btn:disabled { opacity: .35; cursor: default; background: #fff; color: var(--brand-dark); border-color: var(--brand-bdr); transform: none; }
.car-dots { display: flex; gap: .5rem; align-items: center; }
.car-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--brand-bdr); cursor: pointer; padding: 0; transition: .25s; }
.car-dot.active { background: var(--brand); width: 24px; border-radius: 4px; }

@media (max-width: 900px) {
  .hero-top { grid-template-columns: 1fr; gap: 2.25rem; }
  .hero-img { aspect-ratio: 16 / 10; }
  .car-track > .sol-card { flex-basis: calc((100% - 1.25rem) / 2); }
}
@media (max-width: 600px) {
  .car-track > .sol-card { flex-basis: 100%; }
}

/* ── Ajustes finos móvil ── */
@media (max-width: 560px) {
  .hero-title { font-size: clamp(2.05rem, 8.5vw, 2.6rem); }
  .hero-desc { font-size: .98rem; }
  .hero-actions { width: 100%; gap: .75rem; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1 1 100%; justify-content: center; }
  .hero-img-badge { left: 0; }
  .h2 { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
  .sec-head { margin-bottom: 2.5rem; }
}
