:root{
  --bg:#f8fafc;
  --surface:#ffffff;
  --text:#111827;
  --muted:#4b5563;
  --line:#e5e7eb;
  --primary:#e2488e;
  --primary-dark:#c92a7a;
  --primary-soft:#fdf2f8;
  --secondary:#eef2ff;
  --teal:#20ba5a;
  --teal-soft:#e9fbf0;
  --violet:#7c5cdc;
  --blue:#5f7ff0;
  --accent:#111827;
  --radius:14px;
  --shadow:0 18px 42px rgba(17,24,39,.08);
  --shadow-soft:0 10px 26px rgba(17,24,39,.06);
  --container:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  color:var(--text);
  background:white;
  line-height:1.6;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
a:focus-visible,
button:focus-visible,
summary:focus-visible{
  outline:3px solid rgba(226,72,142,.65);
  outline-offset:4px;
}
.skip-link{
  position:fixed;
  top:14px;
  left:14px;
  z-index:100;
  transform:translateY(-160%);
  padding:10px 14px;
  border-radius:10px;
  background:var(--text);
  color:white;
  font-weight:800;
  box-shadow:var(--shadow-soft);
  transition:transform .2s ease;
}
.skip-link:focus{
  transform:translateY(0);
}
.container{
  width:min(calc(100% - 32px),var(--container));
  margin:0 auto;
}
.section{padding:88px 0}
.section-muted{background:linear-gradient(180deg,#f8fafc 0%,#fff 100%)}
.section-muted + .section{padding-top:40px}
.section-accent{background:linear-gradient(135deg,#fff 0%,#fdf2f8 48%,#f5f3ff 100%)}
.section-dark{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 88% 20%,rgba(124,92,220,.16),transparent 30%),
    linear-gradient(135deg,#fff 0%,#fff7fb 44%,#f5f3ff 100%);
  color:var(--text);
}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(229,231,235,.78);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:78px;
}
.brand{
  display:flex;
  align-items:center;
  min-width:132px;
}
.brand-logo{
  display:block;
  width:132px;
  height:auto;
}
.nav-links{
  display:flex;
  gap:22px;
  align-items:center;
}
.nav-links a{
  color:var(--muted);
  font-weight:600;
  font-size:15px;
}
.nav-links a:hover{color:var(--primary)}
.nav-toggle{
  display:none;
  border:0;
  background:none;
  font-size:28px;
}
.hero{
  min-height:650px;
  display:flex;
  align-items:center;
  padding:72px 0;
  overflow:hidden;
  position:relative;
  background:
    radial-gradient(circle at 84% 22%,rgba(255,255,255,.22),transparent 20%),
    radial-gradient(circle at 66% 82%,rgba(255,255,255,.16),transparent 24%),
    linear-gradient(120deg,#5a37b8 0%,#b0459a 45%,#e84863 100%);
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto -80px -180px auto;
  width:520px;
  height:520px;
  border:64px solid rgba(255,255,255,.10);
  border-radius:999px;
}
.hero-content{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,.98fr) minmax(460px,.92fr);
  gap:48px 56px;
  align-items:start;
}
.hero-copy{
  min-width:0;
  max-width:560px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.eyebrow{
  display:inline-block;
  padding:8px 13px;
  border-radius:999px;
  background:var(--primary-soft);
  color:var(--primary-dark);
  font-size:14px;
  font-weight:700;
}
.hero .eyebrow{
  background:rgba(255,255,255,.18);
  color:white;
  backdrop-filter:blur(8px);
}
h1,h2,h3,h4{
  line-height:1.15;
  letter-spacing:0;
  margin:0 0 16px;
}
h1{font-size:clamp(38px,4.55vw,60px)}
h2{font-size:clamp(30px,3vw,44px)}
h3{font-size:22px}
p{
  margin:0 0 16px;
  color:var(--muted);
}
.section-dark p{color:var(--muted)}
.lead{
  font-size:20px;
  max-width:620px;
}
.hero h1,
.hero .lead{color:white}
.hero h1{
  max-width:560px;
  font-weight:800;
}
.hero .lead{
  color:rgba(255,255,255,.94);
  font-weight:500;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:28px 0 22px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  border-radius:10px;
  font-weight:700;
  border:1px solid transparent;
  transition:.2s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  color:white;
  box-shadow:0 14px 28px rgba(226,72,142,.24);
}
.nav-links .btn-primary.btn-small{
  background:#e2488e;
  color:white;
  border-color:#e2488e;
  box-shadow:none;
}
.nav-links .btn-primary.btn-small:hover{
  background:#d63384;
  border-color:#d63384;
}
.btn-primary:hover{filter:saturate(1.08) brightness(.98)}
.btn-secondary{
  background:white;
  border-color:var(--line);
  color:var(--text);
}
.hero .btn-secondary{
  background:rgba(255,255,255,.14);
  color:white;
  border-color:rgba(255,255,255,.5);
}
.btn-ghost{
  background:transparent;
  border-color:var(--line);
  color:var(--primary-dark);
}
.btn-small{
  padding:10px 14px;
  border-radius:10px;
}
.hero-points{
  display:grid;
  grid-column:1 / -1;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  padding:0;
  margin:0;
  list-style:none;
  color:var(--text);
}
.hero-points li{
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.28);
  border-radius:12px;
  padding:18px 20px;
  box-shadow:none;
  font-weight:600;
  color:white;
  backdrop-filter:blur(8px);
}
.hero-showcase{
  position:relative;
  min-width:0;
  min-height:0;
  display:grid;
  place-items:center;
  align-self:start;
}
.platform-card{
  position:relative;
  width:100%;
  max-width:540px;
  padding:28px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:28px;
  background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(255,247,251,.94));
  box-shadow:0 34px 80px rgba(35,20,92,.24);
  backdrop-filter:blur(18px);
  overflow:hidden;
}
.platform-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:6px;
  background:linear-gradient(90deg,var(--primary),var(--violet),#e84863);
}
.platform-topbar{
  display:flex;
  gap:8px;
  margin-bottom:26px;
}
.platform-topbar span{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#f3b1d1;
}
.platform-topbar span:nth-child(2){background:#c9bdf5}
.platform-topbar span:nth-child(3){background:#9ee6ba}
.platform-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.platform-header strong{
  display:block;
  color:var(--text);
  font-size:28px;
  line-height:1.1;
}
.platform-header small{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-weight:600;
}
.status-pill{
  flex:0 0 auto;
  padding:9px 13px;
  border-radius:999px;
  background:var(--primary-soft);
  color:var(--primary-dark);
  font-size:13px;
  font-weight:800;
}
.platform-progress{
  height:10px;
  margin:26px 0;
  border-radius:999px;
  background:#eef2f7;
  overflow:hidden;
}
.platform-progress span{
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,var(--primary),var(--violet));
}
.platform-steps{
  display:grid;
  gap:10px;
}
.platform-steps div{
  display:grid;
  grid-template-columns:46px 1fr;
  gap:12px;
  align-items:center;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:16px;
  background:white;
  box-shadow:0 10px 24px rgba(17,24,39,.045);
}
.platform-steps span{
  display:grid;
  place-items:center;
  width:36px;
  height:36px;
  border-radius:12px;
  background:linear-gradient(135deg,#fdf2f8,#eef2ff);
  color:var(--primary-dark);
  font-weight:800;
  font-size:13px;
}
.platform-steps p{
  margin:0;
  color:var(--text);
  font-weight:700;
}
.floating-metric{
  display:none;
}
.floating-metric strong{
  display:block;
  font-size:22px;
  line-height:1.1;
}
.floating-metric span{
  display:block;
  margin-top:6px;
  font-weight:600;
  color:rgba(255,255,255,.86);
}
.metric-primary{
  left:0;
  top:58px;
}
.metric-secondary{
  right:0;
  bottom:76px;
}
.journey-card,
.highlight-box,
.cta-panel,
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
}
.journey-card{
  position:relative;
  z-index:1;
  align-self:end;
  padding:28px;
  max-width:420px;
  width:100%;
  border-radius:20px;
}
.journey-card ol{
  margin:0;
  padding-left:20px;
  color:var(--muted);
}
.intro-strip{
  font-size:21px;
  max-width:920px;
  margin:0 auto;
  color:#374151;
}
.center{text-align:center}
.section-heading{
  max-width:840px;
  margin-bottom:34px;
}
#problema .section-heading{
  max-width:100%;
}
#problema .section-heading h2{
  max-width:980px;
}
#problema .section-heading p{
  max-width:980px;
}
.section-heading h2{color:var(--text)}
.section-heading p{font-size:18px}
.section-heading.light p{color:var(--muted)}
.section-heading.light h2{color:var(--text)}
.grid{
  display:grid;
  gap:18px;
}
.cards-5{grid-template-columns:repeat(auto-fit,minmax(190px,1fr))}
.cards-4{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.cards-2{grid-template-columns:repeat(2,1fr)}
.card{
  padding:26px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{
  transform:translateY(-3px);
  border-color:#f5c4dc;
  box-shadow:var(--shadow);
}
.card h3{font-size:20px}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
}
.highlight-box{
  padding:28px;
  background:#fff;
}
.media-box{
  overflow:hidden;
  padding-top:0;
}
.media-box img{
  display:block;
  width:calc(100% + 56px);
  max-width:none;
  height:220px;
  object-fit:cover;
  margin:0 -28px 24px;
}
.highlight-box ul{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  color:var(--muted);
}
.highlight-box li{
  position:relative;
  padding-left:28px;
  margin:10px 0;
}
.highlight-box li::before{
  content:"";
  position:absolute;
  left:0;
  top:.45em;
  width:14px;
  height:14px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--primary),var(--violet));
}
.steps{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.step{
  position:relative;
  display:grid;
  grid-template-columns:48px 1fr;
  column-gap:16px;
  align-items:start;
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px;
  background:white;
  box-shadow:var(--shadow-soft);
  min-height:0;
  overflow:visible;
}
.step::after{
  content:"";
  position:absolute;
  top:46px;
  right:-13px;
  width:26px;
  height:26px;
  border-top:1px solid #f5c4dc;
  border-right:1px solid #f5c4dc;
  background:white;
  transform:rotate(45deg);
  z-index:1;
}
.step:nth-child(4)::after,
.step:nth-child(7)::after{display:none}
.step span{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:linear-gradient(135deg,#fdf2f8,#eef2ff);
  color:var(--primary-dark);
  font-weight:800;
  margin:0;
}
.step h3{
  margin-top:2px;
  font-size:20px;
}
.step p{
  grid-column:2;
  margin:0;
  font-size:16px;
}
.exam-card{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:120px;
  text-align:center;
  background:
    linear-gradient(135deg,rgba(253,242,248,.78),rgba(238,242,255,.86)),
    white;
}
.dark-grid .card{
  background:rgba(255,255,255,.86);
  border-color:#f2d8e8;
  box-shadow:var(--shadow-soft);
  backdrop-filter:blur(10px);
}
.check-list{
  margin:0;
  padding:0;
  list-style:none;
}
.check-list li{
  position:relative;
  margin:14px 0;
  padding-left:34px;
  color:#374151;
  font-weight:600;
}
.check-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.1em;
  width:22px;
  height:22px;
  border-radius:999px;
  background:#fdf2f8;
  border:1px solid #f5c4dc;
}
.check-list li::after{
  content:"";
  position:absolute;
  left:8px;
  top:.52em;
  width:7px;
  height:4px;
  border-left:2px solid var(--primary-dark);
  border-bottom:2px solid var(--primary-dark);
  transform:rotate(-45deg);
}
.chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.chip{
  padding:10px 14px;
  border-radius:999px;
  background:var(--primary-soft);
  color:var(--primary-dark);
  border:1px solid #f5c4dc;
  font-weight:700;
  font-size:14px;
}
#aso-digital{
  background:
    linear-gradient(180deg,#fff 0%,#fff7fb 48%,#f8fafc 100%);
}
#aso-digital .two-col{
  position:relative;
  grid-template-columns:1.02fr .98fr;
  align-items:center;
  gap:48px;
  padding:52px;
  border:1px solid #f3d7e7;
  border-radius:28px;
  background:
    radial-gradient(circle at 92% 18%,rgba(124,92,220,.14),transparent 28%),
    linear-gradient(135deg,#fff 0%,#fdf2f8 58%,#f5f3ff 100%);
  box-shadow:0 24px 70px rgba(17,24,39,.08);
  overflow:hidden;
}
#aso-digital .two-col::after{
  content:"";
  position:absolute;
  right:42px;
  bottom:-42px;
  width:240px;
  height:240px;
  border-radius:999px;
  border:34px solid rgba(226,72,142,.08);
}
#aso-digital h2{
  max-width:620px;
}
#aso-digital p{
  max-width:680px;
  font-size:18px;
}
#aso-digital .chip-row{
  max-width:660px;
  margin-top:28px;
}
#aso-digital .chip{
  background:white;
  box-shadow:var(--shadow-soft);
}
#aso-digital .highlight-box{
  position:relative;
  z-index:1;
  padding:34px;
  border-color:#f1cfe2;
  border-radius:22px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);
}
#aso-digital .highlight-box::before{
  content:"ASO";
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  margin-bottom:24px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--primary),var(--violet));
  color:white;
  font-weight:800;
  letter-spacing:.04em;
  box-shadow:0 16px 30px rgba(226,72,142,.22);
}
#aso-digital .highlight-box strong{
  display:block;
  font-size:26px;
  line-height:1.2;
  margin-bottom:14px;
  color:var(--text);
}
#aso-digital .highlight-box p{
  margin:0;
  font-size:18px;
}
.feature-list{
  display:grid;
  gap:14px;
}
.feature-list div{
  padding:18px 20px;
  background:white;
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow-soft);
}
.image-panel{
  min-height:250px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  border-radius:20px;
  background:
    linear-gradient(135deg,rgba(214,51,132,.10),rgba(95,127,240,.12)),
    #fff;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.image-panel img{
  width:min(82%,420px);
  height:auto;
  display:block;
}
.network-section{
  background:white;
}
.network-panel{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:32px;
  padding:48px;
  border:1px solid #f3d7e7;
  border-radius:28px;
  background:
    radial-gradient(circle at 100% 0%,rgba(124,92,220,.14),transparent 34%),
    linear-gradient(135deg,#fff 0%,#fff7fb 54%,#f8f7ff 100%);
  box-shadow:0 24px 70px rgba(17,24,39,.07);
}
.network-heading h2{
  max-width:760px;
}
.network-heading p{
  max-width:760px;
  font-size:18px;
}
.network-summary{
  align-self:start;
  padding:30px;
  border:1px solid #f1cfe2;
  border-radius:22px;
  background:rgba(255,255,255,.84);
  box-shadow:var(--shadow-soft);
}
.network-summary::before{
  content:"";
  display:block;
  width:54px;
  height:54px;
  margin-bottom:22px;
  border-radius:18px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.22),rgba(255,255,255,0)),
    linear-gradient(135deg,var(--primary),var(--violet));
  box-shadow:0 16px 30px rgba(226,72,142,.2);
}
.network-summary strong{
  display:block;
  margin-bottom:10px;
  font-size:24px;
  line-height:1.2;
  color:var(--text);
}
.network-summary p{
  margin:0;
  font-size:17px;
}
.network-cards{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.network-cards article{
  padding:26px;
  border:1px solid var(--line);
  border-radius:18px;
  background:white;
  box-shadow:var(--shadow-soft);
}
.network-cards span{
  display:inline-flex;
  margin-bottom:26px;
  color:var(--primary);
  font-weight:800;
}
.network-cards h3{
  font-size:22px;
}
.network-cards p{
  margin:0;
}
.faq{
  display:grid;
  gap:12px;
}
.faq details{
  border:1px solid var(--line);
  border-radius:12px;
  background:white;
  padding:18px 20px;
  box-shadow:var(--shadow-soft);
}
.faq summary{
  cursor:pointer;
  font-weight:700;
  color:var(--text);
}
.cta-panel{
  padding:38px;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:26px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.96),rgba(255,255,255,.86)),
    linear-gradient(135deg,#fdf2f8,#eef2ff);
}
.cta-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
}
.site-footer{
  background:
    radial-gradient(circle at 88% 0%,rgba(226,72,142,.14),transparent 32%),
    linear-gradient(135deg,#1f1726 0%,#241827 56%,#17131c 100%);
  color:#e5e7eb;
  padding-top:64px;
  border-top:0;
}
.site-footer h3,
.site-footer h4{color:white}
.footer-logo-wrap{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  margin-bottom:16px;
  border-radius:12px;
  background:white;
}
.footer-logo{
  display:block;
  width:132px;
  height:auto;
}
.site-footer p{
  color:#d7dce5;
  max-width:460px;
}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(280px,1.4fr) minmax(180px,.7fr) minmax(180px,.7fr);
  gap:64px;
  align-items:start;
}
.site-footer ul{
  list-style:none;
  padding:0;
  margin:0;
}
.site-footer li{margin:10px 0}
.site-footer a{
  color:#d7dce5;
  transition:color .2s ease;
}
.site-footer a:hover{color:white}
.footer-bottom{
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:42px;
}
.footer-bottom p{
  margin:0;
  color:#aeb7c7;
  font-size:14px;
}
.whatsapp-float{
  position:fixed;
  right:28px;
  bottom:28px;
  z-index:50;
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#25d366;
  color:white;
  box-shadow:0 18px 36px rgba(18,140,78,.34);
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover{
  transform:translateY(-2px) scale(1.04);
  background:#20ba5a;
  box-shadow:0 20px 42px rgba(18,140,78,.4);
}
.whatsapp-float svg{
  width:34px;
  height:34px;
  fill:currentColor;
}
.cookie-consent{
  position:fixed;
  left:24px;
  right:96px;
  bottom:24px;
  z-index:30;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  max-width:920px;
  padding:18px 20px;
  border:1px solid #f1cfe2;
  border-radius:18px;
  background:rgba(255,255,255,.96);
  box-shadow:0 22px 60px rgba(17,24,39,.16);
  backdrop-filter:blur(16px);
}
.cookie-consent[hidden]{
  display:none;
}
.cookie-consent strong{
  display:block;
  margin-bottom:4px;
  color:var(--text);
  font-size:17px;
  line-height:1.2;
}
.cookie-consent p{
  margin:0;
  max-width:620px;
  color:#4b5563;
  font-size:14px;
  line-height:1.5;
}
.cookie-consent-actions{
  display:flex;
  gap:10px;
  flex:0 0 auto;
}
.cookie-consent .btn{
  min-height:44px;
  padding:12px 16px;
  font-size:14px;
}
.page-hero{
  padding:88px 0 72px;
  background:
    radial-gradient(circle at 86% 18%,rgba(255,255,255,.20),transparent 24%),
    linear-gradient(120deg,#5a37b8 0%,#b0459a 48%,#e84863 100%);
  color:white;
}
.page-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.72fr);
  gap:54px;
  align-items:center;
}
.page-hero h1{
  max-width:760px;
  color:white;
}
.page-hero .lead{
  color:rgba(255,255,255,.92);
  font-weight:500;
}
.audience-hero .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:0;
  border-radius:0;
  background:transparent;
  color:rgba(255,255,255,.82);
  font-size:18px;
  font-weight:800;
}
.audience-hero .eyebrow::before{
  content:"";
  width:42px;
  height:2px;
  border-radius:999px;
  background:rgba(255,255,255,.58);
}
.audience-hero h1{
  margin-top:14px;
}
.page-hero-card{
  padding:30px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:26px;
  background:rgba(255,255,255,.16);
  backdrop-filter:blur(14px);
}
.page-hero-card strong{
  display:block;
  margin-bottom:14px;
  font-size:24px;
  line-height:1.2;
}
.page-hero-card ul{
  margin:0;
  padding:0;
  list-style:none;
}
.page-hero-card li{
  padding:12px 0;
  border-top:1px solid rgba(255,255,255,.18);
  color:rgba(255,255,255,.9);
  font-weight:600;
}
.page-hero-card li:first-child{border-top:0}
.page-section{
  padding:78px 0;
}
.page-section.tint{
  background:linear-gradient(180deg,#fff 0%,#fff7fb 100%);
}
.page-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.page-grid.three{
  grid-template-columns:repeat(3,1fr);
}
.page-card{
  padding:26px;
  border:1px solid var(--line);
  border-radius:18px;
  background:white;
  box-shadow:var(--shadow-soft);
}
.page-card .number{
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  margin-bottom:22px;
  border-radius:14px;
  background:linear-gradient(135deg,#fdf2f8,#eef2ff);
  color:var(--primary-dark);
  font-weight:800;
}
.page-card h3{
  font-size:22px;
}
.page-card p{margin-bottom:0}
.market-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.market-card{
  padding:22px;
  border:1px solid #f1cfe2;
  border-radius:18px;
  background:rgba(255,255,255,.88);
  box-shadow:var(--shadow-soft);
}
.market-card strong{
  display:block;
  margin-bottom:8px;
  color:var(--text);
  font-size:18px;
}
.audience-problem{
  background:
    radial-gradient(circle at 8% 16%,rgba(124,92,220,.08),transparent 30%),
    linear-gradient(180deg,#fff 0%,#f8fafc 100%);
}
.audience-problem .container{
  display:grid;
  grid-template-columns:minmax(300px,.82fr) minmax(0,1.18fr);
  gap:42px;
  align-items:start;
}
.audience-problem .section-heading{
  position:sticky;
  top:112px;
  margin:0;
  padding:34px;
  border:1px solid #f1cfe2;
  border-radius:24px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.96),rgba(253,242,248,.9)),
    radial-gradient(circle at 86% 12%,rgba(124,92,220,.14),transparent 34%);
  box-shadow:var(--shadow-soft);
}
.audience-problem .section-heading h2{
  font-size:clamp(30px,3vw,44px);
}
.audience-problem-grid{
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.audience-problem-grid .page-card{
  min-height:230px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border-color:#eef2ff;
  border-radius:22px;
  background:
    linear-gradient(180deg,#fff 0%,#fbfdff 100%);
}
.audience-problem-grid .page-card:nth-child(even){
  transform:translateY(28px);
}
.audience-problem-grid .page-card .number{
  margin-bottom:28px;
  background:var(--text);
  color:white;
}
.audience-journey{
  position:relative;
  overflow:hidden;
}
.audience-journey::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 24%,rgba(226,72,142,.10),transparent 26%),
    radial-gradient(circle at 84% 70%,rgba(124,92,220,.10),transparent 26%);
}
.audience-journey .container{
  position:relative;
  z-index:1;
}
.journey-flow{
  position:relative;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  margin-top:18px;
  padding:22px 0 0;
}
.journey-flow::before{
  content:"";
  position:absolute;
  top:62px;
  left:8%;
  right:8%;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--primary),var(--violet),var(--blue));
  opacity:.28;
}
.journey-flow .page-card{
  position:relative;
  margin:0 8px;
  padding-top:24px;
  border-radius:24px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
}
.journey-flow .page-card .number{
  position:relative;
  z-index:1;
  margin-bottom:20px;
  border:6px solid white;
  background:linear-gradient(135deg,var(--primary),var(--violet));
  color:white;
  box-shadow:0 10px 24px rgba(226,72,142,.22);
}
.audience-benefits{
  background:
    linear-gradient(180deg,#fff 0%,#fff 52%,#f8fafc 100%);
}
.audience-feature-grid{
  gap:18px;
}
.audience-feature-grid .page-card{
  position:relative;
  min-height:226px;
  overflow:hidden;
  border-radius:24px;
  box-shadow:0 14px 36px rgba(17,24,39,.07);
}
.audience-feature-grid .page-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:5px;
  background:linear-gradient(90deg,var(--primary),var(--violet));
}
.audience-feature-grid .page-card:nth-child(2n)::before{
  background:linear-gradient(90deg,var(--violet),var(--blue));
}
.audience-feature-grid .page-card:nth-child(3n)::before{
  background:linear-gradient(90deg,var(--teal),var(--blue));
}
.audience-feature-grid .page-card h3{
  max-width:280px;
}
.audience-compact .section-heading{
  max-width:860px;
}
.audience-chip-grid{
  gap:14px;
}
.audience-chip-grid .market-card{
  position:relative;
  min-height:154px;
  padding:22px 20px 22px 24px;
  border-color:#e9d5ff;
  border-radius:20px;
  background:rgba(255,255,255,.92);
  box-shadow:0 10px 24px rgba(17,24,39,.045);
}
.audience-chip-grid .market-card::before{
  content:"";
  position:absolute;
  top:20px;
  bottom:20px;
  left:0;
  width:4px;
  border-radius:0 999px 999px 0;
  background:linear-gradient(180deg,var(--primary),var(--violet));
}
.audience-chip-grid .market-card:nth-child(3n)::before{
  background:linear-gradient(180deg,var(--teal),var(--blue));
}
.audience-chip-grid .market-card:nth-child(4n)::before{
  background:linear-gradient(180deg,var(--violet),var(--blue));
}
.audience-chip-grid .market-card p{
  margin-bottom:0;
  font-size:15px;
}
.credentialed-network-section{
  background:
    radial-gradient(circle at 10% 18%,rgba(226,72,142,.08),transparent 28%),
    linear-gradient(180deg,#fff 0%,#f8fafc 100%);
}
.credentialed-network{
  display:grid;
  grid-template-columns:minmax(360px,.9fr) minmax(420px,1.1fr);
  gap:36px;
  align-items:start;
}
.network-map-card{
  position:sticky;
  top:102px;
  padding:28px;
  border:1px solid #f1cfe2;
  border-radius:24px;
  background:rgba(255,255,255,.9);
  box-shadow:var(--shadow-soft);
}
.network-map{
  min-height:420px;
  display:grid;
  place-items:center;
}
.network-map img{
  display:block;
  width:min(100%,480px);
  height:auto;
  filter:drop-shadow(0 20px 34px rgba(124,92,220,.12));
}
.network-map-stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.network-map-stats span{
  padding:14px 16px;
  border:1px solid #f5d8e8;
  border-radius:14px;
  background:#fff7fb;
  color:#4b5563;
  font-weight:700;
}
.network-map-stats strong{
  display:block;
  color:var(--primary-dark);
  font-size:26px;
  line-height:1.1;
}
.network-accordion{
  display:grid;
  gap:10px;
}
.network-accordion details{
  border:1px solid var(--line);
  border-radius:16px;
  background:white;
  box-shadow:0 10px 24px rgba(17,24,39,.04);
  overflow:hidden;
}
.network-accordion summary{
  min-height:64px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 18px;
  cursor:pointer;
  color:var(--text);
  font-weight:800;
  list-style:none;
}
.network-accordion summary::-webkit-details-marker{display:none}
.network-accordion summary::after{
  content:"+";
  margin-left:auto;
  color:var(--primary);
  font-size:24px;
  line-height:1;
}
.network-accordion details[open] summary::after{
  content:"-";
}
.network-accordion summary span{
  width:42px;
  height:36px;
  display:inline-grid;
  place-items:center;
  flex:0 0 auto;
  border-radius:12px;
  background:var(--primary-soft);
  color:var(--primary-dark);
  font-size:14px;
  letter-spacing:0;
}
.network-accordion summary strong{
  font-size:17px;
}
.network-accordion p{
  margin:0;
  padding:0 18px 18px 74px;
  color:#374151;
  font-weight:600;
}
.region-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}
.region-list li{
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:white;
  color:#374151;
  font-weight:600;
}
.page-cta{
  padding:42px;
  border:1px solid #f3d7e7;
  border-radius:26px;
  background:
    radial-gradient(circle at 92% 12%,rgba(124,92,220,.14),transparent 30%),
    linear-gradient(135deg,#fff 0%,#fdf2f8 58%,#f5f3ff 100%);
  box-shadow:var(--shadow-soft);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.page-cta h2{
  margin-bottom:8px;
}
.page-cta p{
  margin:0;
}
.simple-footer{
  padding:28px 0;
  border-top:1px solid var(--line);
  background:white;
}
.simple-footer .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.simple-footer p{
  margin:0;
  font-size:14px;
}
.simple-footer a{
  color:var(--primary);
  font-weight:700;
}
.privacy-layout{
  padding:72px 0;
  background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);
}
.privacy-card{
  max-width:980px;
  margin:0 auto;
  padding:42px;
  border:1px solid var(--line);
  border-radius:24px;
  background:white;
  box-shadow:var(--shadow-soft);
}
.privacy-card h2{
  margin-top:42px;
  font-size:26px;
  scroll-margin-top:104px;
}
.privacy-card h2:first-child{
  margin-top:0;
}
.privacy-toc{
  margin:28px 0 42px;
  padding:24px;
  border:1px solid #f1cfe2;
  border-radius:18px;
  background:linear-gradient(135deg,#fff 0%,#fff7fb 100%);
}
.privacy-toc h3{
  margin-bottom:14px;
  font-size:16px;
  color:var(--primary-dark);
}
.privacy-toc ul{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 22px;
  margin:0;
  padding-left:18px;
}
.privacy-toc a{
  color:#374151;
  font-weight:600;
}
.privacy-toc a:hover{
  color:var(--primary-dark);
}
.privacy-card p,
.privacy-card li{
  color:#374151;
}
.privacy-card ul{
  padding-left:22px;
}
@media (max-width:1100px){
  .two-col,
  .cta-panel{grid-template-columns:1fr}
  .hero{
    min-height:620px;
    background:
      radial-gradient(circle at 86% 20%,rgba(255,255,255,.18),transparent 22%),
      linear-gradient(120deg,#5a37b8 0%,#b0459a 48%,#e84863 100%);
  }
  .hero-content{
    grid-template-columns:1fr;
    gap:46px;
  }
  .hero-points{grid-template-columns:repeat(2,1fr)}
  .hero-showcase{min-height:440px}
  .floating-metric{display:none}
  .cta-actions{justify-content:flex-start}
  .cards-5{grid-template-columns:repeat(2,1fr)}
  .cards-4{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  #aso-digital .two-col{
    grid-template-columns:1fr;
    padding:38px;
  }
  .network-panel{
    grid-template-columns:1fr;
    padding:38px;
  }
  .network-cards{
    grid-template-columns:1fr;
  }
  .credentialed-network{
    grid-template-columns:1fr;
  }
  .network-map-card{
    position:relative;
    top:auto;
  }
  .page-hero-grid,
  .page-grid,
  .page-grid.three,
  .market-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .audience-problem .container{
    grid-template-columns:1fr;
  }
  .audience-problem .section-heading{
    position:relative;
    top:auto;
  }
  .audience-problem-grid,
  .journey-flow,
  .audience-feature-grid,
  .audience-chip-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .journey-flow{
    gap:16px;
  }
  .journey-flow::before{
    display:none;
  }
  .journey-flow .page-card{
    margin:0;
  }
  .page-cta{
    align-items:flex-start;
    flex-direction:column;
  }
  .step:nth-child(4)::after{display:block}
  .step:nth-child(even)::after,
  .step:nth-child(7)::after{display:none}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:760px){
  .section{padding:68px 0}
  .nav-toggle{display:block}
  .nav-links{
    position:absolute;
    left:16px;
    right:16px;
    top:78px;
    display:none;
    flex-direction:column;
    background:white;
    border:1px solid var(--line);
    border-radius:18px;
    padding:18px;
    box-shadow:var(--shadow);
  }
  .nav-links.open{display:flex}
  .hero{
    min-height:auto;
    padding:72px 0 68px;
    background:
      linear-gradient(145deg,#5a37b8 0%,#b0459a 52%,#e84863 100%);
  }
  h1{font-size:clamp(34px,10vw,44px)}
  h2{font-size:clamp(28px,8vw,36px)}
  .hero-copy{max-width:100%}
  .hero-content{
    gap:34px;
  }
  .hero-actions{
    width:100%;
    gap:12px;
  }
  .hero-actions .btn{
    flex:1 1 220px;
    min-height:48px;
  }
  .hero-points li{
    padding:16px 18px;
  }
  .hero-showcase{min-height:0}
  .platform-card{
    max-width:100%;
    padding:20px;
    border-radius:22px;
  }
  .platform-header{
    flex-direction:column;
    align-items:flex-start;
  }
  .platform-header strong{font-size:22px}
  .status-pill{
    align-self:flex-start;
  }
  .platform-steps div{
    grid-template-columns:40px 1fr;
    padding:12px;
  }
  .platform-steps span{
    width:34px;
    height:34px;
  }
  .lead{font-size:18px}
  .two-col{
    gap:22px;
  }
  .highlight-box{
    padding:24px;
  }
  .media-box img{
    width:calc(100% + 48px);
    height:190px;
    margin:0 -24px 22px;
  }
  .step{
    grid-template-columns:42px 1fr;
    gap:12px;
    padding:20px;
  }
  .step span{
    width:36px;
    height:36px;
  }
  .step h3{
    font-size:19px;
  }
  .step p{
    grid-column:1 / -1;
  }
  #aso-digital .two-col{
    padding:28px;
    border-radius:22px;
  }
  #aso-digital .highlight-box{
    padding:26px;
  }
  .network-panel{
    padding:28px;
    border-radius:22px;
  }
  .network-summary{
    padding:24px;
  }
  .network-cards article{
    padding:22px;
  }
  .network-map-card{
    padding:22px;
    border-radius:20px;
  }
  .network-map{
    min-height:300px;
  }
  .network-map-stats{
    grid-template-columns:1fr;
  }
  .network-accordion summary{
    min-height:58px;
    padding:12px 14px;
  }
  .network-accordion summary span{
    width:38px;
    height:34px;
  }
  .network-accordion p{
    padding:0 14px 16px 66px;
  }
  .whatsapp-float{
    right:18px;
    bottom:18px;
    width:56px;
    height:56px;
  }
  .whatsapp-float svg{
    width:30px;
    height:30px;
  }
  .cookie-consent{
    left:16px;
    right:16px;
    max-width:calc(100% - 32px);
    bottom:88px;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    padding:18px;
  }
  .cookie-consent-actions{
    width:100%;
  }
  .cookie-consent-actions .btn{
    flex:1;
  }
  .cta-panel{
    padding:28px;
    border-radius:22px;
  }
  .cta-actions{
    width:100%;
  }
  .cta-actions .btn{
    flex:1 1 220px;
    min-height:48px;
  }
  .hero-points,
  .cards-5,
  .cards-4,
  .cards-2,
  .steps,
  .page-hero-grid,
  .page-grid,
  .page-grid.three,
  .market-grid,
  .audience-problem-grid,
  .journey-flow,
  .audience-feature-grid,
  .audience-chip-grid,
  .region-list,
  .footer-grid{grid-template-columns:1fr}
  .audience-problem .section-heading{
    padding:26px;
    border-radius:22px;
  }
  .audience-problem-grid .page-card,
  .audience-feature-grid .page-card,
  .audience-chip-grid .market-card{
    min-height:auto;
  }
  .audience-problem-grid .page-card:nth-child(even){
    transform:none;
  }
  .journey-flow{
    padding-top:0;
  }
  .journey-flow .page-card{
    padding:24px;
  }
  .page-hero{padding:72px 0 58px}
  .page-section{padding:62px 0}
  .page-cta{padding:28px}
  .simple-footer .container{align-items:flex-start;flex-direction:column}
  .privacy-card{padding:28px}
  .privacy-toc ul{grid-template-columns:1fr}
  .step::after{display:none}
  .intro-strip{font-size:18px}
}
@media (max-width:420px){
  .container{
    width:min(calc(100% - 24px),var(--container));
  }
  .nav{
    min-height:70px;
  }
  .brand,
  .brand-logo{
    width:118px;
    min-width:118px;
  }
  .nav-links{
    left:12px;
    right:12px;
    top:70px;
  }
  .hero{
    padding:60px 0;
  }
  .hero-content{
    display:flex;
    flex-direction:column;
  }
  .hero-actions,
  .cta-actions{
    display:grid;
    grid-template-columns:1fr;
  }
  .hero-actions .btn,
  .cta-actions .btn,
  .cookie-consent-actions .btn{
    flex:none;
    width:100%;
    max-width:100%;
  }
  .hero-showcase,
  .platform-card,
  .platform-steps,
  .platform-steps div{
    width:100%;
    max-width:100%;
  }
  .platform-card{
    padding:18px;
  }
  .platform-header strong{
    font-size:20px;
  }
  .platform-steps p{
    font-size:14px;
  }
  .card,
  .page-card{
    padding:22px;
  }
  #aso-digital .two-col,
  .network-panel,
  .cta-panel{
    padding:24px;
  }
  .network-cards article{
    padding:20px;
  }
  .cookie-consent{
    left:12px;
    right:12px;
    padding:16px;
  }
}
@media (prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    scroll-behavior:auto !important;
    transition-duration:.01ms !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
  }
}
 