:root{
  --bg:#f3f3f3;
  --bg-soft:#f9f9f9;
  --surface:#ffffff;
  --surface-2:#ebebeb;
  --ink:#111111;
  --ink-2:#1a1a1a;
  --muted:#6b7280;
  --line:rgba(17,17,17,.10);
  --line-2:rgba(17,17,17,.16);
  --primary:#C8212D;
  --primary-2:#E53935;
  --accent:#374151;
  --shadow:0 18px 40px rgba(0,0,0,.09);
  --shadow-soft:0 10px 24px rgba(0,0,0,.06);
  --radius:22px;
  --max:1220px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--ink);
  line-height:1.5;
  background:
    radial-gradient(circle at 0% 0%, rgba(200,33,45,.05), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(17,17,17,.04), transparent 20%),
    linear-gradient(180deg,var(--bg),#f8f8f8 55%,#f3f3f3 100%);
  overflow-x:hidden;
}

a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button{font:inherit}

.container{
  width:min(calc(100% - 28px), var(--max));
  margin:0 auto;
  padding-left:clamp(0px, 1.6vw, 20px);
}

.nav{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.84);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}

.nav-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brand img{
  width:180px;
  height:auto;
}

.brand small{
  display:block;
  font-size:12px;
  font-weight:700;
  color:var(--muted);
  margin-top:4px;
  white-space:nowrap;
}

.menu{
  display:flex;
  gap:22px;
  color:var(--muted);
  font-size:15px;
}

.menu a{
  border:1px solid var(--line-2);
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  background:#fff;
  transition:background .18s ease, border-color .18s ease, transform .18s ease;
}
.menu a:hover{color:var(--ink);background:rgba(23,50,74,.06);border-color:rgba(23,50,74,.22);transform:translateY(-1px);}

.nav-cta{
  background:var(--primary);
  color:#fff;
  border:0;
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  transition:.18s ease;
  white-space:nowrap;
}
.nav-cta:hover{transform:translateY(-1px); background:var(--primary-2);}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  border:1px solid var(--line-2);
  background:#fff;
  font-size:14px;
  transition:.18s ease;
  cursor:pointer;
  white-space:nowrap;
}

.btn:hover{transform:translateY(-1px)}

.btn-primary{
  color:#fff;
  background:var(--ink-2);
  border-color:transparent;
  box-shadow:0 12px 28px rgba(23,50,74,.18);
}

.btn-secondary{
  color:var(--ink);
  background:rgba(255,255,255,.88);
  border:1px solid var(--line-2);
}

.btn-sm{
  padding:10px 14px;
  font-size:13px;
}

.hero{
  padding:56px 0 34px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:26px;
  align-items:start;
}

.hero-title{
  font-size:clamp(2.1rem,4vw,3.6rem);
  line-height:1.06;
  letter-spacing:-1.2px;
  margin-bottom:14px;
  max-width:820px;
  color:var(--ink-2);
  text-wrap:balance;
}

.hero-sub{
  color:var(--muted);
  font-size:1rem;
  max-width:700px;
  margin-bottom:22px;
}

.ai-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(99,102,241,.06);
  border:1px solid rgba(99,102,241,.14);
  color:#7c7fca;
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
}
.ai-icon{
  display:inline-flex;
  width:18px;
  height:18px;
}
.ai-icon svg{
  width:18px;
  height:18px;
  fill:#9b9dd4;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:8px 18px;
  margin-top:4px;
}
.hero-trust span{
  font-size:.8rem;
  color:#475569;
  display:flex;
  align-items:center;
  gap:4px;
}

.pillars-section{
  padding:48px 0 40px;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.pillars-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.pillar-card{
  padding:26px 22px 24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
  gap:12px;
}
.pillar-ico{
  width:40px;
  height:40px;
  border-radius:10px;
  background:rgba(200,33,45,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.pillar-ico svg{
  width:20px;
  height:20px;
  fill:var(--primary);
}
.pillar-card h3{
  font-size:1rem;
  font-weight:700;
  color:var(--ink);
  margin:0;
  line-height:1.3;
}
.pillar-card p{
  font-size:.88rem;
  color:var(--muted);
  line-height:1.6;
  margin:0;
}
@media(max-width:900px){
  .pillars-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:520px){
  .pillars-grid{
    grid-template-columns:1fr;
  }
}

.statement-section{
  padding:52px 0;
  background:var(--ink-2);
}
.statement-text{
  font-size:clamp(1.25rem,2.4vw,1.65rem);
  font-weight:600;
  color:#fff;
  line-height:1.5;
  text-align:center;
  max-width:820px;
  margin:0 auto;
}

.aire-section{
  padding:28px 0 0;
}

/* ── CLIENTES / TESTIMONIOS ─────────────────────────────────── */
.clients-section{
  padding:60px 0 52px;
  background:var(--bg-soft);
  border-top:1px solid var(--line);
}
.clients-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:32px;
}
.client-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:20px 18px 16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:10px;
  box-shadow:var(--shadow-soft);
  position:relative;
}
.client-logo-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  width:68px;
  height:68px;
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:12px;
  padding:8px;
  flex-shrink:0;
}
.client-logo{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}
.client-card h3{
  font-size:.92rem;
  font-weight:700;
  color:var(--ink);
  margin:0;
  line-height:1.2;
}
.client-card>p{
  font-size:.8rem;
  color:var(--muted);
  line-height:1.5;
  margin:0;
  flex:1;
}
.client-badge{
  position:absolute;
  top:8px; right:8px;
  font-size:10px; font-weight:700; letter-spacing:.04em;
  color:#fff;
  background:#C8212D;
  padding:3px 8px;
  border-radius:999px;
  line-height:1.5;
  border:none;
  cursor:pointer;
  opacity:.88;
  transition:opacity .18s, transform .15s;
  z-index:2;
}
.client-badge:hover{opacity:1; transform:scale(1.05);}
/* ── Lightbox estadísticas ───────────────────── */
.client-detail-overlay{
  position:fixed; inset:0;
  background:rgba(10,14,26,.72);
  display:flex; align-items:center; justify-content:center;
  z-index:9000;
  opacity:0; pointer-events:none;
  transition:opacity .22s;
}
.client-detail-overlay.open{opacity:1; pointer-events:all;}
.client-detail-modal{
  background:#fff;
  border-radius:20px;
  max-width:720px; width:calc(100% - 32px);
  max-height:90vh;
  overflow-y:auto;
  padding:28px 24px 24px;
  position:relative;
  box-shadow:0 24px 60px rgba(10,14,26,.28);
}
.client-detail-close{
  position:absolute; top:14px; right:16px;
  background:none; border:none; font-size:1.1rem;
  cursor:pointer; color:#64748b;
  line-height:1; padding:4px;
}
.client-detail-close:hover{color:#0F172A;}
.client-detail-header{
  display:flex; align-items:center; gap:16px;
  margin-bottom:18px;
  padding-bottom:16px;
  border-bottom:1px solid #e2e8f0;
}
.client-detail-logo-img{
  height:52px; width:auto; max-width:120px;
  object-fit:contain;
}
.client-detail-header h3{font-size:1rem; font-weight:700; color:#0F172A; margin:0 0 4px;}
.client-detail-sub{font-size:.8rem; color:#64748b; margin:0;}
.client-detail-imgs{
  display:flex; flex-direction:column; gap:14px;
}
.client-detail-imgs img{
  width:100%; border-radius:12px;
  display:block;
  box-shadow:0 4px 16px rgba(15,23,42,.09);
}
@media(max-width:760px){
  .clients-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:460px){
  .clients-grid{
    grid-template-columns:1fr 1fr;
  }
}

.aire-block{
  display:flex;
  align-items:center;
  gap:18px;
  padding:18px 22px;
  background:#fff;
  border-radius:22px;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.aire-logo{
  flex:0 0 auto;
}

.aire-logo img{
  width:112px;
  height:auto;
}

.aire-text{
  flex:1;
  min-width:0;
}
.aire-text > strong{
  display:block;
  font-size:1rem;
  color:var(--ink-2);
  margin-bottom:4px;
}
.aire-text p{
  font-size:.92rem;
  color:var(--muted);
  line-height:1.45;
  margin:0;
}

.chain-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:32px;
}
.chain-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:0;
  box-shadow:var(--shadow-soft);
  position:relative;
  overflow:hidden;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.chain-card.open{
  border-color:rgba(0,60,113,.28);
  box-shadow:0 8px 24px rgba(0,60,113,.08);
}
.chain-header{
  display:flex;
  align-items:center;
  gap:14px;
  width:100%;
  padding:20px 22px;
  background:none;
  border:none;
  cursor:pointer;
  text-align:left;
  font-family:inherit;
  transition:background .18s ease;
}
.chain-header:hover{
  background:rgba(0,60,113,.03);
}
.chain-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  flex-shrink:0;
  border-radius:50%;
  background:var(--ink-2);
  color:#fff;
  font-size:13px;
  font-weight:700;
}
.chain-card h3{
  font-size:1rem;
  color:var(--ink);
  margin:0;
  flex:1;
  line-height:1.3;
}
.chain-chevron{
  width:22px;
  height:22px;
  fill:var(--muted);
  flex-shrink:0;
  transition:transform .28s ease;
}
.chain-card.open .chain-chevron{
  transform:rotate(180deg);
}
.chain-list{
  list-style:none;
  padding:0 22px;
  margin:0;
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease, padding .3s ease, opacity .3s ease;
  opacity:0;
}
.chain-card.open .chain-list{
  max-height:300px;
  padding:0 22px 20px;
  opacity:1;
}
.chain-list li{
  position:relative;
  padding-left:18px;
  font-size:.88rem;
  color:var(--muted);
  line-height:1.5;
  margin-bottom:6px;
}
.chain-list li::before{
  content:'';
  position:absolute;
  left:0;
  top:7px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--accent);
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.hero-point{
  background:rgba(255,255,255,.88);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow:var(--shadow-soft);
}

.hero-point strong{
  display:block;
  color:var(--ink-2);
  font-size:1rem;
  margin-bottom:5px;
}

.hero-point span{
  color:var(--muted);
  font-size:.92rem;
}

.hero-visual{
  position:relative;
  min-height:540px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-image{
  width:100%;
  height:540px;
  object-fit:cover;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.58);
  box-shadow:var(--shadow);
}

.hero-overlay-card{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(255,255,255,.65);
  backdrop-filter:blur(10px);
  border-radius:20px;
  padding:18px;
  box-shadow:var(--shadow-soft);
  max-width:620px;
}

.hero-overlay-card h3{
  font-size:1.12rem;
  line-height:1.1;
  margin-bottom:6px;
  color:var(--ink-2);
}

.hero-overlay-card p{
  font-size:.95rem;
  color:var(--muted);
  margin:0;
}

.section{
  padding:76px 0;
}

.section-head{
  max-width:860px;
  margin-bottom:28px;
}

.section-head h2{
  font-size:clamp(1.7rem,3vw,2.5rem);
  line-height:1.08;
  letter-spacing:-.8px;
  margin-bottom:10px;
  color:var(--ink-2);
  text-wrap:balance;
}

.section-head p{
  font-size:1rem;
  color:var(--muted);
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.benefit-card:nth-child(3n+1):last-child{
  grid-column:2;
}

.benefit-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:0;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.benefit-card.open{
  border-color:rgba(0,60,113,.28);
  box-shadow:0 8px 24px rgba(0,60,113,.08);
}

.benefit-header{
  display:flex;
  align-items:center;
  gap:12px;
  width:100%;
  padding:18px 20px;
  background:none;
  border:none;
  cursor:pointer;
  text-align:left;
  font-family:inherit;
  transition:background .18s ease;
}
.benefit-header:hover{
  background:rgba(0,60,113,.03);
}

.card-ico{
  width:42px;
  height:42px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--surface);
  border:1px solid var(--line);
  flex-shrink:0;
}
.card-ico svg{
  width:22px;
  height:22px;
  fill:var(--ink-2);
}
.card-ico img{
  width:22px;
  height:22px;
  object-fit:contain;
}

.benefit-card .num{
  display:none;
}

.benefit-card h3{
  font-size:1rem;
  margin:0;
  color:var(--ink-2);
  line-height:1.15;
  flex:1;
}

.benefit-chevron{
  width:20px;
  height:20px;
  fill:var(--muted);
  flex-shrink:0;
  transition:transform .28s ease;
}
.benefit-card.open .benefit-chevron{
  transform:rotate(180deg);
}

.benefit-body{
  font-size:.94rem;
  color:var(--muted);
  margin:0;
  padding:0 20px;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .32s ease, padding .28s ease, opacity .28s ease;
}
.benefit-card.open .benefit-body{
  max-height:120px;
  padding:0 20px 18px;
  opacity:1;
}

.benefit-card.card-legal .card-ico{ background:rgba(241,245,249,1); }
.benefit-card.card-legal .card-ico svg{ fill:#334155; }
.benefit-card.card-ai .card-ico{ background:rgba(238,234,255,1); }
.benefit-card.card-ai .card-ico svg{ fill:#6d5ff0; }
.benefit-card.card-dash .card-ico{ background:rgba(230,244,255,1); }
.benefit-card.card-dash .card-ico svg{ fill:#0369a1; }

.sectors-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:24px;
}

.sector-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  text-align:center;
  box-shadow:var(--shadow-soft);
}

.sector-card strong{
  display:block;
  font-size:.98rem;
  color:var(--ink-2);
  margin-bottom:6px;
}

.sector-card span{
  color:var(--muted);
  font-size:.92rem;
}

.image-break{
  padding-top:6px;
}

.image-break-card{
  position:relative;
  min-height:390px;
  border-radius:26px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:
    linear-gradient(180deg, rgba(16,38,59,.08), rgba(16,38,59,.24)),
    url('../../../../images/banners/Resultados1.webp')
    center/cover no-repeat;
}

.image-break-copy{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(255,255,255,.65);
  border-radius:20px;
  padding:18px;
  box-shadow:var(--shadow-soft);
  max-width:720px;
}

.image-break-copy h3{
  font-size:1.18rem;
  line-height:1.12;
  margin-bottom:6px;
  color:var(--ink-2);
}

.image-break-copy p{
  font-size:.96rem;
  color:var(--muted);
}

.audience-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.audience-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:0 0 22px;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.audience-card .tag{
  margin:16px 22px 12px;
  display:block;
}
.audience-card h3,
.audience-card p,
.audience-card ul{
  padding-left:22px;
  padding-right:22px;
}
.audience-card ul{
  padding-left:38px;
}

.tag{
  display:inline-block;
  padding:7px 10px;
  border-radius:999px;
  font-size:.76rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.3px;
  color:#c8313b;
  background:rgba(216,58,69,.10);
  border:1px solid rgba(216,58,69,.16);
  margin-bottom:12px;
}

.audience-card h3{
  font-size:1rem;
  line-height:1.15;
  margin-bottom:8px;
  color:var(--ink-2);
}

.audience-card p{
  font-size:.93rem;
  color:var(--muted);
  margin-bottom:12px;
}

.audience-card ul{
  padding-left:18px;
  display:grid;
  gap:7px;
  font-size:.92rem;
  color:var(--ink);
}

.solution-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:stretch;
}

.solution-visual{
  position:relative;
  min-height:430px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:
    linear-gradient(180deg, rgba(16,38,59,.08), rgba(16,38,59,.26)),
    url('../../../../images/banners/DataCenter.webp')
    center/cover no-repeat;
}

.solution-label{
  position:absolute;
  top:20px;
  left:20px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.64);
  border-radius:16px;
  padding:11px 14px;
  font-weight:800;
  font-size:.95rem;
  color:var(--ink-2);
  box-shadow:var(--shadow-soft);
}

.solution-copy{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow-soft);
}

.solution-copy h3{
  font-size:1.56rem;
  line-height:1.1;
  margin-bottom:12px;
  color:var(--ink-2);
}

.solution-copy p{
  font-size:.98rem;
  color:var(--muted);
  margin-bottom:16px;
}

.checks{
  display:grid;
  gap:11px;
}

.check{
  display:flex;
  align-items:flex-start;
  gap:11px;
}

.mark{
  width:22px;
  height:22px;
  border-radius:999px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  font-weight:900;
  color:var(--primary);
  background:rgba(216,58,69,.10);
  border:1px solid rgba(216,58,69,.18);
  margin-top:1px;
}

.check span{
  font-size:.95rem;
  color:var(--ink);
}

.metrics-band{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.metric-card{
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  text-align:center;
}

.metric-card strong{
  display:block;
  font-size:1.08rem;
  color:var(--ink-2);
  margin-bottom:4px;
}

.metric-card span{
  font-size:.88rem;
  color:var(--muted);
}

.pre-cta-section{
  padding:64px 0;
  background:var(--ink);
  text-align:center;
}
.pre-cta-label{
  font-size:.85rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.55);
  margin:0 0 14px;
}
.pre-cta-title{
  font-size:clamp(1.4rem,2.6vw,1.9rem);
  font-weight:700;
  color:#fff;
  max-width:680px;
  margin:0 auto 32px;
  line-height:1.35;
}
.pre-cta-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.btn-light{
  background:transparent;
  border:2px solid rgba(255,255,255,.45);
  color:#fff;
}
.btn-light:hover{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.7);
}

.lead-section{
  padding:92px 0;
}

.lead-box{
  background:
    radial-gradient(circle at 0% 0%, rgba(216,58,69,.07), transparent 24%),
    radial-gradient(circle at 100% 100%, rgba(113,209,255,.10), transparent 22%),
    linear-gradient(145deg,#f8fbff,#edf4fa);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:34px;
}

.lead-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:28px;
  align-items:center;
}

.lead-copy h2{
  font-size:clamp(1.9rem,3.5vw,2.8rem);
  line-height:1.06;
  letter-spacing:-.9px;
  color:var(--ink-2);
  margin-bottom:12px;
}
.lead-copy h3{
  font-size:clamp(1.7rem,3vw,2.5rem);
  line-height:1.08;
  letter-spacing:-.8px;
  color:var(--ink-2);
  margin-bottom:12px;
}

.lead-copy p{
  font-size:1rem;
  color:var(--muted);
  margin-bottom:16px;
  max-width:680px;
}

.micro-proof{
  display:grid;
  gap:10px;
}

.micro-proof div{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--ink);
  font-size:.95rem;
}

.micro-proof b{
  color:var(--primary);
  margin-top:1px;
}

.lead-form{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.70);
  border-radius:22px;
  box-shadow:var(--shadow-soft);
  padding:22px;
}

.lead-form h3{
  font-size:1.15rem;
  color:var(--ink-2);
  margin-bottom:8px;
}

.lead-form p{
  font-size:.93rem;
  color:var(--muted);
  margin-bottom:14px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.field, .field-select, .field-area{
  width:100%;
  padding:13px 14px;
  border-radius:13px;
  border:1px solid rgba(23,50,74,.12);
  background:#fff;
  color:var(--ink);
  font-size:14px;
  outline:none;
}

.field::placeholder, .field-area::placeholder{
  color:#90a5b8;
}

.field:focus, .field-select:focus, .field-area:focus{
  border-color:rgba(62,153,255,.48);
  box-shadow:0 0 0 3px rgba(62,153,255,.12);
}

.field-select{
  appearance:none;
}

.field-area{
  grid-column:1 / -1;
  min-height:110px;
  resize:vertical;
}

.privacy-check{display:flex;align-items:flex-start;gap:8px;font-size:13px;color:var(--muted);line-height:1.5;cursor:pointer;}
.privacy-check input[type="checkbox"]{width:18px;height:18px;margin-top:1px;flex-shrink:0;accent-color:var(--primary);cursor:pointer;}
.privacy-check a{color:var(--primary);text-decoration:underline;font-weight:500;}
.privacy-check a:hover{color:#a82d35;}

.form-submit{
  width:100%;
  margin-top:14px;
}

.form-note{
  display:block;
  margin-top:10px;
  font-size:.84rem;
  color:var(--muted);
}

.success{
  display:none;
  margin-top:14px;
  padding:13px 15px;
  border-radius:13px;
  background:rgba(46,212,139,.12);
  border:1px solid rgba(46,212,139,.28);
  color:#15714b;
  font-size:.92rem;
}
.success--ok{
  background:rgba(46,212,139,.12);
  border-color:rgba(46,212,139,.28);
  color:#15714b;
}
.success--err,
.success--error{
  background:rgba(220,38,38,.08);
  border-color:rgba(220,38,38,.22);
  color:#b91c1c;
}

.footer{
  border-top:1px solid var(--line);
  padding:26px 0 36px;
  color:var(--muted);
  font-size:.92rem;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

@media (max-width:1100px){
  .hero-grid,
  .solution-grid,
  .lead-grid{
    grid-template-columns:1fr;
  }

  .benefit-grid,
  .metrics-band,
  .sectors-grid,
  .chain-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .audience-grid,
  .hero-proof{
    grid-template-columns:1fr 1fr;
  }

  .hero-visual{
    min-height:460px;
  }

  .hero-image{
    height:460px;
  }
}

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.hamburger span{
  display:block;
  width:24px;
  height:2px;
  background:var(--ink);
  border-radius:2px;
  transition:transform .22s ease, opacity .22s ease;
}
.hamburger.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-nav{
  display:none;
  flex-direction:column;
  gap:4px;
  padding:12px 16px 18px;
  background:#fff;
  border-bottom:1px solid var(--line);
  box-shadow:0 4px 14px rgba(0,0,0,.08);
  position:sticky;
  top:60px;
  z-index:99;
}
.mobile-nav.open{ display:flex; }
.mobile-nav a{
  padding:12px 14px;
  border-radius:12px;
  font-size:.94rem;
  color:var(--ink);
  text-decoration:none;
  transition:background .15s;
}
.mobile-nav a:hover{ background:var(--surface); }
.mobile-nav-cta{
  background:var(--ink-2) !important;
  color:#fff !important;
  font-weight:700;
  text-align:center;
  margin-top:4px;
}

@media (max-width:760px){
  .menu{display:none}
  .nav-cta{display:none}
  .brand small{display:none}
  .hamburger{display:flex}
  .nav-inner{justify-content:space-between;}
  .benefit-grid,
  .audience-grid,
  .hero-proof,
  .metrics-band,
  .sectors-grid,
  .chain-grid,
  .form-grid{
    grid-template-columns:1fr;
  }

  .nav-inner{min-height:70px}
  .hero{padding-top:40px}
  .brand img{width:150px}

  /* Hero mobile: imagen limpia arriba, card de texto debajo */
  .hero-visual{
    min-height:auto;
    flex-direction:column;
    align-items:stretch;
    gap:14px;
  }
  .hero-image{
    height:300px;
    border-radius:20px;
    width:100%;
  }
  .hero-overlay-card{
    position:relative;
    left:auto;right:auto;bottom:auto;
    max-width:100%;
    background:rgba(248,250,252,.96);
    backdrop-filter:none;
    border-radius:16px;
    border:1px solid var(--line);
  }
  .lead-box,
  .solution-copy,
  .audience-card,
  .benefit-card{
    padding:20px;
  }
  .aire-block{flex-direction:column;text-align:center;gap:14px;}
  .aire-block .btn{width:100%;}
}

.whatsapp-float{
  position:fixed;
  top:60%;
  right:24px;
  z-index:999;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#25D366;
  border:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 14px rgba(0,0,0,.25);
  transition:transform .22s ease, box-shadow .22s ease;
  text-decoration:none;
}
.whatsapp-float:hover{
  transform:scale(1.08) translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,.3);
}
.whatsapp-float svg{
  width:32px;
  height:32px;
  fill:#fff;
}
@media(max-width:600px){
  .whatsapp-float{
    top:60%;
    right:18px;
    width:54px;
    height:54px;
  }
  .whatsapp-float svg{
    width:28px;
    height:28px;
  }
}

/* ── MODAL WHATSAPP ──────────────────────────────────────────── */
.wa-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:1100;
  background:rgba(0,0,0,.45);
  align-items:flex-end;
  justify-content:center;
  padding:0 0 80px;
}
.wa-modal.open{
  display:flex;
}
.wa-modal-panel{
  background:#fff;
  border-radius:20px 20px 16px 16px;
  width:100%;
  max-width:440px;
  padding:24px 22px 20px;
  box-shadow:0 -4px 40px rgba(0,0,0,.18);
  animation:waSlideUp .22s ease;
}
@keyframes waSlideUp{
  from{transform:translateY(40px);opacity:0}
  to{transform:translateY(0);opacity:1}
}
.wa-modal-header{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:16px;
}
.wa-modal-ico{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.wa-modal-ico svg{
  width:22px;
  height:22px;
  fill:#fff;
}
.wa-modal-header>div:nth-child(2){
  flex:1;
}
.wa-modal-header h3{
  font-size:1rem;
  font-weight:700;
  color:var(--ink);
  margin:0 0 3px;
}
.wa-modal-header p{
  font-size:.82rem;
  color:var(--muted);
  margin:0;
  line-height:1.4;
}
.wa-modal-close{
  background:none;
  border:none;
  cursor:pointer;
  font-size:1.1rem;
  color:var(--muted);
  line-height:1;
  padding:2px 4px;
  flex-shrink:0;
  border-radius:6px;
  transition:background .15s;
}
.wa-modal-close:hover{
  background:var(--bg-soft);
  color:var(--ink);
}
.wa-field{
  display:block;
  width:100%;
  box-sizing:border-box;
  padding:10px 13px;
  border:1px solid var(--line);
  border-radius:10px;
  font-size:.92rem;
  font-family:inherit;
  color:var(--ink);
  background:#fff;
  margin-bottom:10px;
  transition:border-color .18s;
  outline:none;
}
.wa-field:focus{
  border-color:var(--ink-2);
}
.wa-area{
  resize:vertical;
  min-height:68px;
}
.wa-send-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  padding:12px 18px;
  border-radius:12px;
  background:#25D366;
  color:#fff;
  border:none;
  cursor:pointer;
  font-size:.96rem;
  font-weight:600;
  font-family:inherit;
  transition:background .18s, transform .15s;
  margin-top:4px;
}
.wa-send-btn svg{
  fill:#fff;
  flex-shrink:0;
}
.wa-send-btn:hover{
  background:#1ebe5a;
  transform:translateY(-1px);
}
@media(max-width:480px){
  .wa-modal{
    padding:0;
    align-items:flex-end;
  }
  .wa-modal-panel{
    border-radius:20px 20px 0 0;
    max-width:100%;
  }
}

/* ── SOBRESCRITURAS PALETA ROJO / NEGRO / GRIS ─────────────── */

/* Foco de campos: rojo en vez de azul */
.field:focus, .field-select:focus, .field-area:focus{
  border-color:rgba(200,33,45,.45);
  box-shadow:0 0 0 3px rgba(200,33,45,.10);
}

/* Menú nav: hover neutral */
.menu a:hover{
  background:rgba(17,17,17,.05);
  border-color:rgba(17,17,17,.18);
  color:var(--ink);
}

/* AI badge: neutral oscuro */
.ai-badge{
  background:rgba(17,17,17,.06);
  border:1px solid rgba(17,17,17,.12);
  color:var(--accent);
}
.ai-icon svg{ fill:var(--accent); }

/* Numeración de acordeones: rojo */
.chain-num{ background:var(--primary); }

/* Pillar ico: fondo rojo claro, icono rojo */
.pillar-ico{ background:rgba(200,33,45,.10); }
.pillar-ico svg{ fill:var(--primary); }

/* Hover de acordeones y benefit cards: gris */
.chain-header:hover{ background:rgba(17,17,17,.03); }
.benefit-header:hover{ background:rgba(17,17,17,.03); }

/* Bordes de acordeón abierto: rojo */
.chain-card.open{ border-color:rgba(200,33,45,.22); box-shadow:0 8px 24px rgba(200,33,45,.07); }
.benefit-card.open{ border-color:rgba(200,33,45,.22); box-shadow:0 8px 24px rgba(200,33,45,.07); }

/* Lead box: gradiente neutral */
.lead-box{
  background:
    radial-gradient(circle at 0% 0%, rgba(200,33,45,.05), transparent 24%),
    radial-gradient(circle at 100% 100%, rgba(17,17,17,.04), transparent 22%),
    linear-gradient(145deg,#f8f8f8,#f0f0f0);
}

/* Image break overlays: neutral oscuro */
.image-break-card{
  background:
    linear-gradient(180deg, rgba(10,10,10,.08), rgba(10,10,10,.26)),
    url('../../../../images/banners/Resultados1.webp')
    center/cover no-repeat;
}
.solution-visual{
  background:
    linear-gradient(180deg, rgba(10,10,10,.08), rgba(10,10,10,.28)),
    url('../../../../images/banners/DataCenter.webp')
    center/cover no-repeat;
}

/* Statement band: negro sólido */
.statement-section{ background:var(--ink); }

/* btn-primary: rojo Smart TMT */
.btn-primary{
  background:var(--primary);
  box-shadow:0 12px 28px rgba(200,33,45,.22);
}
.btn-primary:hover{ background:var(--primary-2); }

/* Mobile nav CTA: rojo */
.mobile-nav-cta{ background:var(--primary) !important; }

/* WA field focus: match paleta */
.wa-field:focus{ border-color:var(--ink-2); }

/* Wa send btn: sin cambio — verde WhatsApp se mantiene */
/* ── NUEVAS SECCIONES COPYWRITING ─────────────────────────── */

/* Problema */
.problema-section{ background:#f8fafc; }
.problema-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  margin-top:2.5rem;
}
.problema-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:14px;
  padding:1.5rem 1.5rem 1.75rem;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}
.problema-card h3{
  font-size:.95rem;
  font-weight:700;
  margin:.75rem 0 .5rem;
  color:var(--ink);
}
.problema-card p{
  font-size:.875rem;
  line-height:1.65;
  color:var(--ink-2);
  margin:0;
}
@media(max-width:900px){
  .problema-grid{ grid-template-columns:repeat(2,1fr); }
}
@media(max-width:560px){
  .problema-grid{ grid-template-columns:1fr; }
}

/* Trust band */
.trust-section{
  background:var(--ink);
  padding:3rem 0;
}
.trust-band{
  display:flex;
  gap:1.5rem;
  flex-wrap:wrap;
  justify-content:center;
  align-items:flex-start;
}
.trust-item{
  text-align:center;
  flex:1 1 160px;
  max-width:220px;
  padding:.5rem 1rem;
}
.trust-num{
  font-size:2rem;
  font-weight:800;
  color:#25D366;
  line-height:1.1;
  margin-bottom:.4rem;
}
.trust-label{
  font-size:.8rem;
  line-height:1.45;
  color:rgba(255,255,255,.75);
  font-weight:400;
}

/* Beneficios reales */
.beneficios-reales-section{ background:#f8fafc; }
.beneficios-reales-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  margin-top:2.5rem;
}
.beneficio-item{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:14px;
  padding:1.5rem 1.5rem 1.75rem;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}
.beneficio-ico{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(200,33,45,.10);
  border-radius:10px;
  margin-bottom:.85rem;
}
.beneficio-ico svg{ fill:var(--primary); }
.beneficio-item h3{
  font-size:.95rem;
  font-weight:700;
  margin:0 0 .5rem;
  color:var(--ink);
}
.beneficio-item p{
  font-size:.875rem;
  line-height:1.65;
  color:var(--ink-2);
  margin:0;
}
@media(max-width:900px){
  .beneficios-reales-grid{ grid-template-columns:repeat(2,1fr); }
}
@media(max-width:560px){
  .beneficios-reales-grid{ grid-template-columns:1fr; }
}

/* SEO prose section */
.seo-section{ background:#fff; }
.seo-prose{
  max-width:820px;
  margin:2rem auto 0;
}
.seo-prose p{
  font-size:.95rem;
  line-height:1.85;
  color:var(--ink-2);
  margin-bottom:1.25rem;
}
.seo-prose p:last-child{ margin-bottom:0; }

/* SEO section cards (reemplaza seo-prose) */
.seo-cards-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.5rem;
  margin-top:2rem;
}
.seo-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:14px;
  padding:1.5rem 1.5rem 1.75rem;
  border-left:3px solid var(--primary);
}
.seo-card-ico{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(200,33,45,.10);
  border-radius:10px;
  margin-bottom:.85rem;
}
.seo-card-ico svg{ fill:var(--primary); }
.seo-card h3{
  font-size:.95rem;
  font-weight:700;
  margin:0 0 .5rem;
  color:var(--ink);
  line-height:1.35;
}
.seo-card p{
  font-size:.875rem;
  line-height:1.65;
  color:var(--ink-2);
  margin:0;
}
@media(max-width:700px){
  .seo-cards-grid{ grid-template-columns:1fr; }
}

/* ─── Solución section — mini-cards 2×2 ──────────────────── */
.sol-cards-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:1.25rem 0 1.5rem;
}
.sol-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:12px;
  padding:14px 14px 16px;
  box-shadow:0 2px 8px rgba(0,0,0,.04);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.sol-card-ico{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(200,33,45,.10);
  border-radius:10px;
  flex-shrink:0;
}
.sol-card-ico svg{ fill:var(--primary); }
.sol-card strong{
  font-size:.875rem;
  font-weight:700;
  color:var(--ink);
  line-height:1.25;
}
.sol-card span{
  font-size:.8rem;
  color:var(--ink-2,#475569);
  line-height:1.55;
}
@media(max-width:600px){
  .sol-cards-grid{ grid-template-columns:1fr; }
}

/* ── Hero diferenciador ───────────────────────── */
.hero-diferenciador{
  font-size:.9rem;
  color:var(--muted);
  font-style:italic;
  margin-bottom:4px;
  line-height:1.5;
}

/* ── SEO narrative body ───────────────────────── */
.seo-body{
  margin-top:40px;
  background:var(--surface);
  border:1px solid var(--line);
  border-left:3px solid var(--primary);
  border-radius:0 14px 14px 0;
  padding:28px 32px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 36px;
}
@media(max-width:720px){
  .seo-body{grid-template-columns:1fr;padding:20px 20px;}
}
.seo-body p{
  font-size:.88rem;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:0;
  padding-bottom:14px;
}
.seo-body p:last-child{padding-bottom:0;}
.seo-body strong{color:var(--accent);font-weight:600;}

/* ── Pre-CTA sub + trust ──────────────────────── */
.pre-cta-sub{
  font-size:1rem;
  color:var(--muted);
  max-width:560px;
  margin:0 auto 24px;
  line-height:1.6;
  text-align:center;
}
.pre-cta-trust{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px 24px;
  margin-top:18px;
}
.pre-cta-trust span{
  font-size:.8rem;
  color:var(--muted);
}
