/* ==========================================================================
   ALLSOLUTIA — Design System v2 "Aurora"
   Tema dark premium: gradientes azul→verde da marca, vidro fosco,
   brilhos suaves e animações discretas. Tokens em variáveis CSS —
   campanhas sobrescrevem cores em campaigns.css.
   ========================================================================== */

:root{
  /* Marca */
  --brand-blue: #2BB7F0;
  --brand-blue-dark: #0C7FAD;
  --brand-green: #2EDD96;
  --brand-green-dark: #189760;
  --gradient-brand: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);

  /* Superfícies (dark) */
  --bg-0: #060b14;
  --bg-1: #0a1220;
  --bg-2: #0e1727;
  --bg-3: #131e33;
  --stroke: rgba(148,183,222,.14);
  --stroke-soft: rgba(148,183,222,.08);

  /* Texto */
  --text: #eaf2fa;
  --text-muted: #9db0c5;
  --text-dim: #6d7f95;

  /* Raio / sombra */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 18px 50px rgba(2,8,20,.55);
  --glow-blue: 0 0 60px rgba(43,183,240,.22);
  --glow-green: 0 0 60px rgba(46,221,150,.18);

  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', -apple-system, sans-serif;
  --container: 1180px;
}

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

html{ scroll-behavior:smooth; }

body{
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
::selection{ background: rgba(43,183,240,.35); }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section{ padding: 110px 0; position:relative; }

/* ---------- Tipografia ---------- */
h1,h2,h3,h4{ font-family: var(--font-display); font-weight:700; letter-spacing:-.02em; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 18px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(46,221,150,.25);
  background: rgba(46,221,150,.06);
}

.section-title{
  font-size: clamp(30px, 3.6vw, 44px);
  margin-bottom: 18px;
  line-height:1.18;
}
.section-title .accent{
  background: var(--gradient-brand);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.section-sub{
  color: var(--text-muted);
  font-size: 17px;
  max-width: 660px;
  margin-bottom: 60px;
}
.section-head{ text-align:center; }
.section-head .section-sub{ margin-left:auto; margin-right:auto; }

/* ---------- Animações de entrada ---------- */
.reveal{ opacity:0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in{ opacity:1; transform:none; }

@keyframes floatY{ 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-12px) } }
@keyframes pulseDot{ 0%,100%{ opacity:1; transform:scale(1) } 50%{ opacity:.4; transform:scale(.75) } }

/* ---------- Botões ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--gradient-brand);
  color: #04121c;
  box-shadow: 0 10px 30px rgba(43,183,240,.35);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 16px 40px rgba(46,221,150,.4); }

.btn-ghost{
  background: rgba(255,255,255,.03);
  color: var(--text);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover{ border-color: var(--brand-blue); color: var(--brand-blue); background: rgba(43,183,240,.06); }

.btn-whatsapp{
  background: #21C063;
  color:#04120a;
  box-shadow: 0 10px 26px rgba(33,192,99,.35);
}
.btn-whatsapp:hover{ transform: translateY(-2px); box-shadow: 0 16px 36px rgba(33,192,99,.45); }
.btn-whatsapp svg{ fill: currentColor; }

.btn-sm{ padding: 11px 22px; font-size: 14px; }

/* ---------- Header ---------- */
header.site-header{
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(6,11,20,.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
header.site-header.scrolled{
  background: rgba(6,11,20,.85);
  border-bottom-color: var(--stroke-soft);
}
.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:11px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing:.01em;
}
.brand img{ width:36px; height:36px; }
.brand .word-all{ color: var(--text-dim); }
.brand .word-solut{ color: var(--brand-blue); }
.brand .word-ia{ color: var(--brand-green); }

nav.main-nav{ display:flex; align-items:center; gap: 30px; }
nav.main-nav a{
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s ease;
  position:relative;
}
nav.main-nav a::after{
  content:'';
  position:absolute;
  left:0; bottom:-6px;
  width:0; height:2px;
  border-radius:2px;
  background: var(--gradient-brand);
  transition: width .25s ease;
}
nav.main-nav a:hover, nav.main-nav a.active{ color: var(--text); }
nav.main-nav a:hover::after, nav.main-nav a.active::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:14px; }

.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width: 42px; height: 42px;
  align-items:center; justify-content:center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:''; display:block; width:22px; height:2px; border-radius:2px;
  background:var(--text); position:relative; transition:.28s;
}
.nav-toggle span::before{ position:absolute; top:-7px; }
.nav-toggle span::after{ position:absolute; top:7px; }
.nav-toggle.open span{ background:transparent; }
.nav-toggle.open span::before{ top:0; transform:rotate(45deg); }
.nav-toggle.open span::after{ top:0; transform:rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  min-height: 620px;
  display:flex;
  align-items:center;
}
.hero::before{
  content:'';
  position:absolute;
  width: 700px; height: 700px;
  top: -280px; left: -180px;
  background: radial-gradient(circle, rgba(43,183,240,.16) 0%, transparent 65%);
  pointer-events:none;
}
.hero::after{
  content:'';
  position:absolute;
  width: 640px; height: 640px;
  bottom: -300px; right: -160px;
  background: radial-gradient(circle, rgba(46,221,150,.13) 0%, transparent 65%);
  pointer-events:none;
}
.hero canvas#neuralCanvas{
  position:absolute; inset:0; width:100%; height:100%; opacity:.5;
}
.hero-grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(148,183,222,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,183,222,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 75%);
  pointer-events:none;
}
.hero-inner{
  position:relative; z-index:2;
  width:100%;
  max-width: 820px;
  margin: 0 auto;
  text-align:center;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.hero-badge .badge-dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--brand-green);
  box-shadow: 0 0 10px var(--brand-green);
  animation: pulseDot 2s infinite;
}
.hero h1{
  font-size: clamp(36px, 5.4vw, 64px);
  color:#fff;
  line-height:1.12;
  margin-bottom: 26px;
}
.hero h1 .accent{
  background: var(--gradient-brand);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero p.lead{
  font-size: 18.5px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 42px;
}
.hero-actions{
  display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
}
.hero-scroll-hint{
  position:absolute;
  bottom: 26px; left:50%;
  transform:translateX(-50%);
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  z-index:2;
  animation: floatY 3s ease-in-out infinite;
}

/* Hero em duas colunas (página do produto) */
.hero-split .hero-inner{
  max-width: var(--container);
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items:center;
  text-align:left;
}
.hero-split p.lead{ margin-left:0; }
.hero-split .hero-actions{ justify-content:flex-start; }
.hero-split .hero-badge{ margin-bottom:22px; }

/* ---------- Faixa de métricas ---------- */
.stats-strip{
  position:relative;
  z-index:3;
  margin-top: -46px;
  padding: 0;
}
.stats-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stroke-soft);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.stat{
  background: var(--bg-1);
  padding: 30px 24px;
  text-align:center;
}
.stat .num{
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  line-height:1.1;
}
.stat .lbl{ font-size: 13.5px; color: var(--text-muted); margin-top:6px; }

/* ---------- Cards genéricos ---------- */
.glow-card{
  --mx: 50%;
  --my: 50%;
  position:relative;
  padding: 34px 30px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--stroke-soft);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  overflow:hidden;
}
.glow-card::before{
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(43,183,240,.1), transparent 45%);
  opacity:0;
  transition: opacity .3s ease;
  pointer-events:none;
}
.glow-card:hover{ transform: translateY(-5px); border-color: var(--stroke); box-shadow: var(--shadow); }
.glow-card:hover::before{ opacity:1; }
.glow-card h3{ font-size: 17.5px; margin-bottom: 10px; color:#fff; position:relative; }
.glow-card p{ color: var(--text-muted); font-size: 14.5px; position:relative; }

.cards-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.cards-grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card-icon{
  width:52px; height:52px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(43,183,240,.14), rgba(46,221,150,.14));
  border: 1px solid var(--stroke-soft);
  margin-bottom: 20px;
  position:relative;
}
.card-icon svg{ width:25px; height:25px; stroke: var(--brand-blue); }
.card-icon.icon-green svg{ stroke: var(--brand-green); }
.card-icon.icon-solid{
  background: var(--gradient-brand);
  border:none;
}
.card-icon.icon-solid svg{ stroke: #04121c; }

/* ---------- Badges ---------- */
.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing:.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.badge-live{
  background: rgba(46,221,150,.12);
  color: var(--brand-green);
  border: 1px solid rgba(46,221,150,.3);
}
.badge-live::before{
  content:'';
  width:7px; height:7px; border-radius:50%;
  background: var(--brand-green);
  box-shadow: 0 0 8px var(--brand-green);
  animation: pulseDot 2s infinite;
}
.badge-soon{
  background: rgba(157,176,197,.08);
  color: var(--text-muted);
  border: 1px solid var(--stroke-soft);
}
.badge-new{
  background: rgba(43,183,240,.12);
  color: var(--brand-blue);
  border: 1px solid rgba(43,183,240,.3);
}

.card-link{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
  margin-top: 14px;
  position:relative;
  transition: gap .2s ease, color .2s ease;
}
.card-link:hover{ gap:11px; color: var(--brand-green); }

/* ---------- Seção "dores" ---------- */
.pain-card{ padding: 28px 26px; }
.pain-card .pain-emoji{
  font-size: 26px;
  margin-bottom: 14px;
  display:block;
}

/* ---------- Método (timeline) ---------- */
.method-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: metodo;
}
.method-step{
  position:relative;
  padding: 34px 26px 30px;
}
.method-step .step-num{
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  width: 44px; height:44px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: var(--gradient-brand);
  color: #04121c;
  margin-bottom: 20px;
  box-shadow: 0 8px 22px rgba(43,183,240,.3);
}
.method-step h3{ font-size:17px; }
.method-connector{
  position:absolute;
  top: 55px;
  right: -22px;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), transparent);
  z-index:1;
}
.method-note{
  margin-top: 36px;
  text-align:center;
  color: var(--text-dim);
  font-size: 14.5px;
}
.method-note strong{ color: var(--brand-green); font-weight:600; }

/* ---------- Destaque de produto (split) ---------- */
.product-feature{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:center;
}
.product-feature .feature-list{ list-style:none; margin: 26px 0 34px; display:grid; gap:14px; }
.product-feature .feature-list li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  color: var(--text-muted);
  font-size: 15px;
}
.product-feature .feature-list li .check{
  flex-shrink:0;
  width:22px; height:22px;
  border-radius: 7px;
  background: rgba(46,221,150,.12);
  border: 1px solid rgba(46,221,150,.3);
  display:flex; align-items:center; justify-content:center;
  margin-top:1px;
}
.product-feature .feature-list li .check svg{ width:12px; height:12px; stroke: var(--brand-green); stroke-width:3; }
.product-feature .feature-list li strong{ color: var(--text); font-weight:600; }

/* ---------- Mockup de chat WhatsApp ---------- */
.phone-wrap{
  position:relative;
  display:flex;
  justify-content:center;
}
.phone-wrap::before{
  content:'';
  position:absolute;
  inset: 8% 12%;
  background: radial-gradient(ellipse, rgba(43,183,240,.22), rgba(46,221,150,.1) 55%, transparent 75%);
  filter: blur(30px);
}
.phone{
  position:relative;
  width: 330px;
  border-radius: 34px;
  background: #0a0f1a;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow), var(--glow-blue);
  overflow:hidden;
  animation: floatY 7s ease-in-out infinite;
}
.phone-top{
  display:flex;
  align-items:center;
  gap:11px;
  padding: 16px 16px 13px;
  background: #101a2b;
  border-bottom: 1px solid var(--stroke-soft);
}
.phone-avatar{
  width:38px; height:38px;
  border-radius:50%;
  background: var(--gradient-brand);
  display:flex; align-items:center; justify-content:center;
  font-weight:800;
  font-family: var(--font-display);
  color:#04121c;
  font-size:15px;
}
.phone-top .bot-name{ font-weight:600; font-size:14.5px; color:#fff; line-height:1.2; }
.phone-top .bot-status{ font-size:11.5px; color: var(--brand-green); }
.phone-msgs{
  padding: 18px 14px 20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height: 350px;
  background:
    radial-gradient(circle at 80% 10%, rgba(43,183,240,.05), transparent 40%),
    radial-gradient(circle at 15% 90%, rgba(46,221,150,.05), transparent 40%);
}
.msg{
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height:1.45;
  opacity:0;
  animation: msgIn .45s ease forwards;
}
@keyframes msgIn{ from{ opacity:0; transform:translateY(10px) } to{ opacity:1; transform:none } }
.msg.in{
  align-self:flex-start;
  background: #16233a;
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.msg.out{
  align-self:flex-end;
  background: #0d3b2e;
  color: #d9f7e8;
  border-bottom-right-radius: 4px;
}
.msg .msg-time{ display:block; font-size:10px; color: rgba(255,255,255,.4); text-align:right; margin-top:4px; }
.msg-chips{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  align-self:flex-start;
  opacity:0;
  animation: msgIn .45s ease forwards;
}
.msg-chips span{
  font-size:11.5px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(43,183,240,.4);
  color: var(--brand-blue);
  background: rgba(43,183,240,.07);
}

/* ---------- Lista de novidades ---------- */
.news-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.news-item{
  display:flex;
  gap: 16px;
  align-items:flex-start;
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  background: var(--bg-1);
  border: 1px solid var(--stroke-soft);
  transition: border-color .25s ease, transform .25s ease;
}
.news-item:hover{ border-color: rgba(43,183,240,.35); transform: translateX(4px); }
.news-item .news-emoji{
  flex-shrink:0;
  width: 42px; height:42px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(43,183,240,.12), rgba(46,221,150,.12));
  border: 1px solid var(--stroke-soft);
  display:flex; align-items:center; justify-content:center;
  font-size:19px;
}
.news-item h4{ font-size: 15px; color:#fff; margin-bottom:4px; }
.news-item h4 .badge{ margin:0 0 0 8px; padding: 2.5px 9px; font-size:10px; vertical-align:2px; }
.news-item p{ font-size: 13.5px; color: var(--text-muted); }

/* ---------- Faixa de segurança ---------- */
.trust-strip{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap: 14px;
}
.trust-chip{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size: 13.5px;
  font-weight:500;
  color: var(--text-muted);
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--stroke-soft);
  background: var(--bg-1);
}
.trust-chip svg{ width:16px; height:16px; stroke: var(--brand-green); }

/* ---------- Contato ---------- */
.contact-section{
  text-align:center;
  overflow:hidden;
}
.contact-card{
  position:relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 70px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--stroke-soft);
  overflow:hidden;
}
.contact-card::before{
  content:'';
  position:absolute;
  top:-160px; left:50%;
  transform:translateX(-50%);
  width: 560px; height: 320px;
  background: radial-gradient(ellipse, rgba(43,183,240,.16), rgba(46,221,150,.08) 55%, transparent 75%);
  pointer-events:none;
}
.contact-card > *{ position:relative; }
.contact-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin: 36px 0 30px; }
.social-row{ display:flex; gap:14px; justify-content:center; }
.social-row a{
  width:44px; height:44px;
  border-radius: 13px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid var(--stroke-soft);
  background: rgba(255,255,255,.02);
  transition: .25s;
}
.social-row a:hover{ background: var(--gradient-brand); border-color: transparent; transform:translateY(-3px); }
.social-row a:hover svg{ stroke:#04121c; }
.social-row svg{ width:19px; height:19px; stroke: var(--text-muted); transition:.25s; }

/* ---------- Aviso global ---------- */
.aviso-global{
  text-align:center;
  padding: 14px 24px;
  font-size: 14px;
  background: rgba(43,183,240,.07);
  border-top: 1px solid var(--stroke-soft);
  color: var(--text-muted);
}

/* ---------- Footer ---------- */
footer.site-footer{
  background: var(--bg-1);
  color: var(--text-dim);
  padding: 54px 0 32px;
  border-top: 1px solid var(--stroke-soft);
}
.footer-inner{
  max-width: var(--container);
  margin:0 auto;
  padding: 0 24px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap: 28px;
}
.footer-brand p{
  font-size: 13.5px;
  max-width: 300px;
  margin-top: 14px;
  color: var(--text-dim);
}
.footer-links{ display:flex; gap:26px; flex-wrap:wrap; }
.footer-links a{ font-size: 13.5px; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover{ color: var(--brand-blue); }
.footer-bottom{
  max-width: var(--container);
  margin: 36px auto 0;
  padding: 22px 24px 0;
  border-top: 1px solid var(--stroke-soft);
  font-size: 12.5px;
  text-align:center;
  color: var(--text-dim);
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  width: 58px; height:58px;
  border-radius: 50%;
  background: #21C063;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px rgba(33,192,99,.45);
  transition: transform .25s ease;
}
.whatsapp-float:hover{ transform: scale(1.1); }
.whatsapp-float svg{ width:28px; height:28px; fill:#04120a; }

/* ---------- Breadcrumb ---------- */
.breadcrumb{ padding: 18px 0 0; position:relative; z-index:5; }
.breadcrumb a{
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .2s;
}
.breadcrumb a:hover{ color: var(--brand-blue); }

/* ---------- Fundos alternados ---------- */
.section-alt{ background: var(--bg-1); }
.section-divider-glow{
  position:absolute;
  top:0; left:50%;
  transform:translateX(-50%);
  width: min(720px, 90%);
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(43,183,240,.4), rgba(46,221,150,.4), transparent);
}

/* ---------- Responsivo ---------- */
@media (max-width: 1020px){
  .method-grid{ grid-template-columns: repeat(2, 1fr); }
  .method-connector{ display:none; }
  .cards-grid-3{ grid-template-columns: repeat(2, 1fr); }
  .product-feature{ grid-template-columns: 1fr; gap: 48px; }
  .hero-split .hero-inner{ grid-template-columns: 1fr; gap: 56px; text-align:center; }
  .hero-split p.lead{ margin: 0 auto 42px; }
  .hero-split .hero-actions{ justify-content:center; }
}

@media (max-width: 900px){
  nav.main-nav{
    position: fixed;
    top: 65px; left:0; right:0;
    background: rgba(8,14,25,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform .32s ease, opacity .32s ease;
    z-index: 190;
  }
  nav.main-nav.open{ transform: translateY(0); opacity:1; }
  nav.main-nav a::after{ display:none; }
  .nav-toggle{ display:flex; }
  .header-actions .btn-sm-desktop{ display:none; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Página legal (privacidade) ---------- */
.legal-hero{
  padding: 90px 0 50px;
  min-height: 0;
}
.legal-hero h1{ font-size: clamp(30px, 4vw, 46px); }
.legal-hero p.lead{ margin-bottom: 0; }
.legal-layout{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items:start;
}
.legal-toc{
  position: sticky;
  top: 90px;
  padding: 24px 22px;
  border-radius: var(--radius);
  background: var(--bg-1);
  border: 1px solid var(--stroke-soft);
}
.legal-toc h3{
  font-size: 12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: var(--brand-green);
  margin-bottom: 14px;
}
.legal-toc ul{ list-style:none; display:grid; gap:9px; }
.legal-toc a{
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color .2s;
}
.legal-toc a:hover{ color: var(--brand-blue); }
.prose{
  max-width: 760px;
  font-size: 15.5px;
  color: var(--text-muted);
}
.prose h2{
  font-size: 21px;
  color: #fff;
  margin: 44px 0 16px;
  padding-top: 26px;
  border-top: 1px solid var(--stroke-soft);
}
.prose h2:first-child{ margin-top:0; padding-top:0; border-top:none; }
.prose h2 .num{
  color: var(--brand-blue);
  margin-right: 8px;
  font-family: var(--font-display);
}
.prose h3{ font-size: 16px; color: var(--text); margin: 22px 0 10px; }
.prose p{ margin-bottom: 14px; }
.prose ul, .prose ol{ margin: 0 0 16px 20px; display:grid; gap:7px; }
.prose strong{ color: var(--text); font-weight:600; }
.prose a{ color: var(--brand-blue); }
.prose a:hover{ text-decoration:underline; text-underline-offset:3px; }
.note-box{
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  background: rgba(255,209,102,.06);
  border: 1px solid rgba(255,209,102,.25);
  border-left: 3px solid #FFD166;
  margin: 22px 0;
  font-size: 14.5px;
}
.info-box{
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  background: rgba(43,183,240,.05);
  border: 1px solid rgba(43,183,240,.2);
  border-left: 3px solid var(--brand-blue);
  margin: 22px 0;
  font-size: 14.5px;
}
.info-box p{ margin-bottom: 6px; }
.info-box p:last-child{ margin-bottom: 0; }
.info-box ul{ margin: 8px 0 0 20px; }
.legal-updated{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-dim);
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke-soft);
  background: rgba(255,255,255,.02);
}

@media (max-width: 900px){
  .legal-layout{ grid-template-columns: 1fr; }
  .legal-toc{ position: static; }
}

@media (max-width: 640px){
  section{ padding: 76px 0; }
  .hero{ padding: 100px 0 90px; min-height:0; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .contact-actions{ flex-direction:column; align-items:stretch; }
  .method-grid{ grid-template-columns: 1fr; }
  .cards-grid-3{ grid-template-columns: 1fr; }
  .stats-strip{ margin-top: -30px; }
  .stat{ padding: 22px 14px; }
  .stat .num{ font-size: 26px; }
  .phone{ width: min(310px, 88vw); }
  .contact-card{ padding: 52px 24px; }
  .hero-scroll-hint{ display:none; }
}
