/* =========================================================
   Automatizei . site.css
   Linguagem do design system oficial (design-system/design-system.html):
   canto reto, card técnico com cantos marcados, rótulo em Space Mono,
   grade e brilho ciano, vidro esmaecido nos destaques.
   ========================================================= */

:root {
  --bg: #0B0E13;
  --surface: #12161D;
  --cyan: #22D3EE;
  --cyan-soft: #A5F3FC;
  --teal: #0891B2;
  --deep: #075E70;
  --text: #D7E3EA;
  --title: #FFFFFF;
  --border: #22303B;
  --pos: #34D399;
  --neg: #F87171;
  --muted: rgba(255, 255, 255, 0.5);
  --faint: rgba(255, 255, 255, 0.35);
  --font-display: "Space Grotesk", Helvetica, Arial, sans-serif;
  --font-body: Inter, Helvetica, Arial, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --max: 1200px;
  --gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--title); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
::selection { background: rgba(34, 211, 238, 0.3); color: #fff; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.section { position: relative; z-index: 2; padding-block: 104px; scroll-margin-top: 90px; }
.section + .section { border-top: 1px dashed rgba(34, 48, 59, 0.6); }

/* ---------- Fundo ---------- */
#parallax { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(34, 211, 238, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 211, 238, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
}
.site-main { position: relative; z-index: 2; }

/* ---------- Tipografia ---------- */
.label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan);
}
.label-line { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.label-line::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, var(--border), transparent); }
.h2 {
  font-family: var(--font-display); font-weight: 600; color: var(--title);
  font-size: clamp(32px, 4.4vw, 52px); line-height: 1.06; letter-spacing: -0.03em; text-wrap: balance;
}
.lead { font-size: 18px; line-height: 1.65; color: var(--text); max-width: 680px; }
.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); }
.accent { color: var(--cyan); }
.grad-cyan { background: linear-gradient(180deg, var(--cyan-soft), var(--cyan) 55%, var(--teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head { margin-bottom: 56px; display: grid; gap: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px var(--gutter);
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { background: rgba(11, 14, 19, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: rgba(34, 48, 59, 0.7); padding-block: 12px; }
.header-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 24px; width: auto; }
.nav { display: none; align-items: center; gap: 28px; }
.nav a { position: relative; font-size: 14px; font-weight: 500; color: #9CA3AF; }
.nav a:hover { color: #fff; }
.nav a::after { content: ""; position: absolute; left: 50%; bottom: -8px; width: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); transform: translateX(-50%); transition: width 0.3s; }
.nav a:hover::after { width: 100%; }
.site-header .header-cta { display: none; }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: transparent; border: 1px solid var(--border); color: #fff; }
.mobile-nav {
  position: fixed; inset: 0; z-index: 49; background: rgba(11, 14, 19, 0.97);
  display: flex; flex-direction: column; justify-content: center; gap: 22px; padding: 96px var(--gutter) 40px;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav a { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: #fff; }
@media (min-width: 900px) {
  .nav, .site-header .header-cta { display: inline-flex; }
  .nav-toggle, .mobile-nav { display: none; }
}

/* ---------- Botões ---------- */
.btn-solid, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 22px; border: 1px solid var(--cyan); transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-solid { background: linear-gradient(180deg, #7DF0FF, var(--cyan) 55%); border-color: var(--cyan-soft); color: #041017; font-weight: 800; box-shadow: 0 0 0 1px rgba(165, 243, 252, 0.5), 0 16px 44px -12px rgba(34, 211, 238, 0.9); }
.btn-solid:hover { background: #fff; border-color: #fff; color: var(--bg); box-shadow: 0 0 0 1px #fff, 0 16px 44px -12px rgba(255, 255, 255, 0.8); }
.btn-outline { background: transparent; color: var(--cyan); }
.btn-outline:hover { background: var(--cyan); color: var(--bg); }
.btn-solid:active, .btn-outline:active { transform: scale(0.97); }
.btn-block { width: 100%; }
.btn-solid[disabled] { opacity: 0.4; cursor: not-allowed; box-shadow: none; }
.btn-solid[disabled]:hover { background: var(--cyan); border-color: var(--cyan); }
.btn-sm { padding: 11px 16px; font-size: 11px; }

/* Anel giratório nos botões principais do site: mesmo efeito do CTA em destaque,
   via border-image (não usa mask, não invade o miolo do botão) */
@property --ring-angle { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes ring-rotate { to { --ring-angle: 360deg; } }
.btn-solid, .btn-outline, .btn-teal-solid, .btn-teal { position: relative; }
.btn-solid::after, .btn-outline::after, .btn-teal-solid::after, .btn-teal::after {
  content: ""; position: absolute; inset: -3px; border: 1px solid transparent;
  border-image: conic-gradient(from var(--ring-angle), transparent 0%, transparent 85%, rgba(255, 255, 255, 0.95) 100%) 1;
  animation: ring-rotate 4s linear infinite; pointer-events: none;
}

/* Botão com brilho e borda giratória (CTA principal, em destaque) */
.btn-glow { position: relative; display: inline-flex; align-items: center; justify-content: center; min-width: 264px; height: 62px; padding: 0 30px; background: linear-gradient(180deg, #7DF0FF, var(--cyan) 55%); border: 0; box-shadow: 0 0 0 1px rgba(165, 243, 252, 0.5), 0 16px 44px -12px rgba(34, 211, 238, 0.9); transition: transform 0.2s, box-shadow 0.25s; }
.btn-glow:hover { box-shadow: 0 0 0 1px #fff, 0 16px 44px -12px rgba(255, 255, 255, 0.8); }
.btn-glow:active { transform: scale(0.96); }
.btn-glow > span { position: absolute; inset: 0; pointer-events: none; }
.btn-glow .g1 { background: radial-gradient(15% 50% at 50% 100%, #fff 0%, rgba(255, 255, 255, 0) 100%); filter: blur(15px); opacity: 0.5; transition: opacity 1.2s ease-in-out; }
.btn-glow .g2 { background: radial-gradient(60.6% 50% at 50% 100%, #fff 0%, rgba(255, 255, 255, 0) 100%); filter: blur(18px); opacity: 0; transition: opacity 1.2s ease-in-out; }
.btn-glow .g3 { background: radial-gradient(10.7% 50% at 50% 100%, #fff 0%, rgba(255, 255, 255, 0) 100%); opacity: 0.6; transition: opacity 1.2s ease-in-out; }
.btn-glow .g4 { background: radial-gradient(60.1% 50% at 50% 100%, #fff 0%, rgba(255, 255, 255, 0) 100%); opacity: 0; transition: opacity 1.2s ease-in-out; }
.btn-glow:hover .g1, .btn-glow:hover .g3 { opacity: 0; }
.btn-glow:hover .g2, .btn-glow:hover .g4 { opacity: 1; }
.btn-glow .spin-wrap { overflow: hidden; }
.btn-glow .spin { position: absolute; inset: -300%; background: conic-gradient(from 90deg at 50% 50%, transparent 0%, transparent 88%, rgba(255, 255, 255, 0.95) 100%); animation: ds-spin 4s linear infinite; }
.btn-glow .fill { inset: 1px; background: linear-gradient(180deg, #7DF0FF, var(--cyan) 55%); }
.btn-glow .btn-label { position: relative; inset: auto; z-index: 2; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #041017; }

/* Botão com feixe no hover */
.btn-beam { position: relative; display: inline-flex; align-items: center; justify-content: center; min-width: 200px; height: 54px; padding: 0 24px; overflow: hidden; background: rgba(255, 255, 255, 0.05); border: 0; color: #fff; transition: transform 0.2s; }
.btn-beam:active { transform: scale(0.96); }
.btn-beam > span { position: absolute; pointer-events: none; }
.btn-beam .beam { inset: -100%; background: conic-gradient(from 90deg at 50% 50%, transparent 0%, transparent 75%, var(--cyan) 100%); animation: ds-spin 3s linear infinite; opacity: 0; transition: opacity 0.3s; }
.btn-beam .edge { inset: 0; background: var(--border); transition: opacity 0.3s; }
.btn-beam .fill { inset: 1px; background: var(--bg); z-index: 1; }
.btn-beam .halo { inset: 0; z-index: 1; opacity: 0; background: radial-gradient(50% 50% at 50% 100%, rgba(34, 211, 238, 0.22) 0%, transparent 100%); transition: opacity 0.5s; }
.btn-beam:hover .beam, .btn-beam:hover .halo { opacity: 1; }
.btn-beam:hover .edge { opacity: 0; }
.btn-beam .btn-label { position: relative; z-index: 2; display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; }
.btn-beam:hover .btn-label { color: #fff; }

@keyframes ds-spin { to { transform: rotate(360deg); } }
@keyframes drift { 0% { transform: translate(0, 0); } 100% { transform: translate(30px, 50px); } }
@keyframes pulse { 50% { opacity: 0.4; } }

/* ---------- Cards ---------- */
/* Card técnico: borda tracejada e os 4 cantos marcados em ciano */
.tech-card {
  position: relative;
  background-color: var(--bg);
  border: 1px dashed var(--border);
  background-image:
    linear-gradient(var(--cyan), var(--cyan)), linear-gradient(var(--cyan), var(--cyan)),
    linear-gradient(var(--cyan), var(--cyan)), linear-gradient(var(--cyan), var(--cyan)),
    linear-gradient(var(--cyan), var(--cyan)), linear-gradient(var(--cyan), var(--cyan)),
    linear-gradient(var(--cyan), var(--cyan)), linear-gradient(var(--cyan), var(--cyan));
  background-size: 9px 1px, 1px 9px, 9px 1px, 1px 9px, 9px 1px, 1px 9px, 9px 1px, 1px 9px;
  background-position: top left, top left, top right, top right, bottom left, bottom left, bottom right, bottom right;
  background-repeat: no-repeat;
  background-origin: border-box;
  transition: border-color 0.5s;
}
.tech-card:hover { border-color: rgba(34, 211, 238, 0.45); }
.card { background: var(--surface); border: 1px solid var(--border); }
.card-glass { background: rgba(0, 0, 0, 0.6); border: 1px solid var(--border); border-left: 3px solid var(--cyan); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.border-gradient { position: relative; }
.border-gradient::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; background: linear-gradient(225deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%); pointer-events: none; }
.border-gradient-cyan::before { background: linear-gradient(225deg, rgba(34, 211, 238, 0) 0%, rgba(34, 211, 238, 0.75) 50%, rgba(34, 211, 238, 0) 100%); }
.glass {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 40%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08); border-top-color: rgba(255, 255, 255, 0.2); border-left-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 20px 60px -10px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(255, 255, 255, 0.02);
}
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; animation: drift 10s infinite alternate ease-in-out; pointer-events: none; }
.icon-box { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: rgba(34, 211, 238, 0.1); color: var(--cyan); border-radius: 12px; }
.check { color: var(--cyan); flex-shrink: 0; margin-top: 3px; }

/* ---------- 01 Hero ---------- */
.hero { padding-top: 150px; padding-bottom: 72px; text-align: center; }
.badge {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 999px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
  font-size: 12px; font-weight: 500; color: #CFFAFE; margin-bottom: 34px;
}
.badge::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1)); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px rgba(34, 211, 238, 0.7); animation: pulse 2s infinite; }
.hero h1 {
  font-family: var(--font-display); font-weight: 600; color: var(--title);
  font-size: clamp(38px, 6vw, 76px); line-height: 1.04; letter-spacing: -0.035em;
  max-width: 1040px; margin: 0 auto 26px; text-wrap: balance;
}
.hero .lead { margin: 0 auto 40px; font-size: clamp(17px, 1.6vw, 20px); color: #9CA3AF; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--muted); }
.showcase { display: grid; gap: 20px; margin-top: 72px; text-align: left; }
@media (min-width: 1000px) { .showcase { grid-template-columns: 1fr 1.6fr 1fr; } }
.status-card { padding: 30px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.status-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px dashed var(--border); }
.bars { display: flex; gap: 5px; }
.bars span { width: 6px; height: 6px; background: var(--border); }
.bars span:first-child { background: var(--cyan); animation: pulse 1.6s infinite; }
.big-num { font-family: var(--font-display); font-weight: 600; font-size: 56px; line-height: 1; color: #fff; letter-spacing: -0.04em; }
.visual-card { position: relative; min-height: 440px; border: 1px solid var(--border); overflow: hidden; display: flex; }
.visual-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(34, 211, 238, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 211, 238, 0.07) 1px, transparent 1px); background-size: 40px 40px; }
.visual-glow { position: absolute; inset: 0; background: radial-gradient(40% 45% at 62% 58%, rgba(34, 211, 238, 0.24), transparent 70%); }
.visual-symbol { position: absolute; right: 18px; bottom: 26px; width: min(62%, 280px); filter: drop-shadow(0 0 40px rgba(34, 211, 238, 0.45)); transition: transform 0.7s; }
.visual-card:hover .visual-symbol { transform: scale(1.05); }
@media (max-width: 999px) { .visual-symbol { width: 42%; opacity: 0.45; right: 10px; bottom: auto; top: 44%; } }
.visual-content { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; gap: 24px; }
.visual-tag { background: var(--bg); border: 1px solid var(--border); padding: 14px 16px; display: inline-flex; flex-direction: column; gap: 6px; align-self: flex-start; }
.visual-tag strong { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: -0.01em; }
.visual-note { max-width: 380px; padding: 18px 20px; font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.75); }
.corner-mark { position: absolute; right: 26px; bottom: 26px; width: 90px; height: 90px; border-right: 1px solid rgba(34, 211, 238, 0.3); border-bottom: 1px solid rgba(34, 211, 238, 0.3); z-index: 1; }
.index-card { background: var(--bg); border: 1px solid var(--border); display: flex; flex-direction: column; }
.index-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px dashed var(--border); background: rgba(255, 255, 255, 0.02); }
.index-item { position: relative; flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 22px; border-bottom: 1px solid var(--border); color: #fff; overflow: hidden; transition: background 0.3s; }
.index-item:last-child { border-bottom: 0; }
.index-item::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--cyan); transform: translateX(-100%); transition: transform 0.2s; }
.index-item:hover { background: rgba(255, 255, 255, 0.03); color: #fff; }
.index-item:hover::before { transform: none; }
.index-item small { display: block; font-family: var(--font-mono); font-size: 10px; color: var(--faint); margin-bottom: 4px; }
.index-item h4 { font-family: var(--font-display); font-size: 18px; font-weight: 500; transition: transform 0.3s; }
.index-item:hover h4 { transform: translateX(6px); }
.index-item .arrow { color: var(--faint); transition: transform 0.3s, color 0.3s; }
.index-item:hover .arrow { color: var(--cyan); transform: rotate(-45deg); }

/* ---------- 02 Dor ---------- */
.pain-grid { display: grid; gap: 16px; }
@media (min-width: 760px) { .pain-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.pain { padding: 28px; display: grid; gap: 12px; }
.pain h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: #fff; letter-spacing: -0.015em; display: flex; gap: 12px; align-items: flex-start; }
.pain h3 svg { color: var(--neg); flex-shrink: 0; margin-top: 4px; }
.pain p { font-size: 15px; color: var(--text); }
.third-way { position: relative; overflow: hidden; margin-top: 56px; border: 1px solid var(--border); padding: 28px; }
.third-way-inner { position: relative; padding: clamp(28px, 4vw, 48px); border-radius: 32px; display: grid; gap: 22px; }
.third-way h3 { font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 38px); font-weight: 600; line-height: 1.1; color: #fff; letter-spacing: -0.025em; text-wrap: balance; }
.quote { font-family: var(--font-display); font-size: clamp(18px, 2vw, 22px); color: var(--cyan); border-left: 3px solid var(--cyan); padding-left: 18px; }

/* ---------- 03 Método ---------- */
.pillars { display: grid; gap: 18px; }
@media (min-width: 700px) { .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.pillar { position: relative; overflow: hidden; border-radius: 16px; background: rgba(255, 255, 255, 0.04); padding: 28px; display: grid; gap: 14px; align-content: start; transition: transform 0.3s, background 0.3s; backdrop-filter: blur(6px); }
.pillar:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.07); }
.pillar-letter { position: absolute; right: 18px; top: 6px; font-family: var(--font-display); font-weight: 700; font-size: 96px; line-height: 1; color: rgba(34, 211, 238, 0.08); pointer-events: none; }
.pillar h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: #fff; }
.pillar .desc { font-size: 14px; color: var(--muted); }
.pillar ul { list-style: none; margin: 4px 0 0; padding: 14px 0 0; border-top: 1px dashed var(--border); display: grid; gap: 9px; }
.pillar li { display: flex; gap: 10px; font-size: 14px; line-height: 1.45; }
.method-cta { margin-top: 44px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; }
.method-cta p { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: #fff; }

/* ---------- 04 Como funciona ---------- */
.steps { display: grid; gap: 18px; counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.step { padding: 30px; display: grid; gap: 14px; align-content: start; }
.step-top { display: flex; align-items: center; justify-content: space-between; }
.step-num { font-family: var(--font-display); font-weight: 600; font-size: 44px; line-height: 1; color: var(--cyan); letter-spacing: -0.04em; }
.step h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: #fff; }
.step p { font-size: 15px; }
.effort { margin-top: 28px; padding: 18px 22px; font-size: 15px; color: #fff; }

/* ---------- 05 Planos ---------- */
.plans { display: grid; gap: 22px; align-items: stretch; }
@media (min-width: 980px) { .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: center; } }
.plan { position: relative; border-radius: 24px; background: rgba(255, 255, 255, 0.04); padding: 32px; display: flex; flex-direction: column; gap: 18px; backdrop-filter: blur(6px); height: 100%; }
.plan-featured { background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)); box-shadow: 0 0 60px -24px rgba(34, 211, 238, 0.45); }
@media (min-width: 980px) { .plan-featured { transform: scale(1.04); z-index: 1; } }
.plan-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--cyan); color: var(--bg); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.plan h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: #fff; letter-spacing: -0.015em; }
.plan .sub { font-size: 14px; color: var(--muted); }
.plan-price { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); padding-bottom: 16px; border-bottom: 1px dashed var(--border); }
.plan-featured .plan-price { color: rgba(34, 211, 238, 0.8); }
.plan ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; flex: 1; }
.plan li { display: flex; gap: 10px; font-size: 14px; line-height: 1.5; }
.plan-note { margin-top: 26px; font-size: 13px; color: var(--muted); text-align: center; }

/* ---------- 06 Prova ---------- */
.guarantee { position: relative; overflow: hidden; border: 1px solid var(--border); padding: 24px; margin-bottom: 22px; }
.guarantee-inner { position: relative; border-radius: 32px; padding: clamp(28px, 4vw, 48px); display: grid; gap: 22px; }
@media (min-width: 900px) { .guarantee-inner { grid-template-columns: auto 1fr; align-items: center; gap: 36px; } }
.shield { width: 88px; height: 88px; display: inline-flex; align-items: center; justify-content: center; color: var(--cyan); border: 1px dashed rgba(34, 211, 238, 0.5); background: rgba(34, 211, 238, 0.06); }
.guarantee h3 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); font-weight: 600; color: #fff; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 12px; }
.guarantee p { color: var(--text); }
.guarantee small { display: block; margin-top: 14px; font-size: 13px; color: var(--muted); }
.stats { display: grid; gap: 18px; margin-bottom: 22px; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.stat { border-radius: 24px; padding: 28px; }
.stat strong { display: block; font-family: var(--font-display); font-size: 48px; font-weight: 600; line-height: 1; letter-spacing: -0.04em; }
.stat span { display: block; margin-top: 10px; font-size: 14px; font-weight: 500; }
.stat-light { color: var(--bg); background: linear-gradient(225deg, rgba(255, 255, 255, 0.95), #fff 50%, rgba(255, 255, 255, 0.95)); }
.stat-light span { color: #525252; }
.stat-cyan { background: var(--cyan); color: var(--bg); }
.stat-cyan span { color: rgba(11, 14, 19, 0.7); }
.stat-dark { background: rgba(255, 255, 255, 0.05); }
.stat-dark strong { color: var(--cyan); }
.stat-dark span { color: var(--muted); }
.testimonials { display: grid; gap: 18px; }
@media (min-width: 900px) { .testimonials { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.testimonial { padding: 28px; display: flex; flex-direction: column; gap: 18px; justify-content: space-between; }
.testimonial p { font-size: 15px; line-height: 1.65; color: #fff; }
.person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; background: rgba(34, 211, 238, 0.12); color: var(--cyan); font-family: var(--font-display); font-weight: 600; }
.person strong { display: block; font-size: 14px; color: #fff; }
.person small { font-size: 12px; color: var(--muted); }
.tag-modelo { align-self: flex-start; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #FBBF24; border: 1px dashed rgba(251, 191, 36, 0.6); padding: 4px 8px; }

/* ---------- 07 Para quem ---------- */
.fit { display: grid; gap: 18px; }
@media (min-width: 800px) { .fit { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.fit-col { padding: 30px; display: grid; gap: 16px; align-content: start; }
.fit-col h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: #fff; }
.fit-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.fit-col li { display: flex; gap: 10px; font-size: 15px; }
.fit-yes { border-top: 3px solid var(--pos); }
.fit-no { border-top: 3px solid var(--neg); }

/* ---------- 08 Quem faz ---------- */
.founder { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .founder { grid-template-columns: 5fr 7fr; } }
.photo-frame { position: relative; aspect-ratio: 4 / 5; max-width: 440px; width: 100%; padding: 14px; }
.photo-inner { position: relative; width: 100%; height: 100%; overflow: hidden; background: var(--surface); display: flex; align-items: center; justify-content: center; }
.photo-inner img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder { display: grid; gap: 10px; justify-items: center; text-align: center; padding: 20px; color: var(--muted); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.photo-glow { position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 100%, rgba(34, 211, 238, 0.25), transparent 70%); pointer-events: none; }
.founder h3 { font-family: var(--font-display); font-size: clamp(30px, 3.6vw, 44px); font-weight: 600; color: #fff; letter-spacing: -0.03em; line-height: 1.05; }
.founder .role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); }
.founder-text { display: grid; gap: 18px; }
.company-line { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--border); align-self: start; width: fit-content; }
.company-line span { padding: 8px 14px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); border-right: 1px solid var(--border); }
.company-line span:last-child { border-right: 0; color: var(--cyan); }

/* ---------- 09 FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 900px; }
.faq-item { background: var(--bg); border: 1px solid var(--border); transition: border-color 0.3s; }
.faq-item.is-open { border-color: rgba(34, 211, 238, 0.45); }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; background: transparent; border: 0; text-align: left; color: #fff; font-family: var(--font-display); font-size: 18px; font-weight: 500; }
.faq-trigger svg { color: var(--cyan); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.is-open .faq-trigger svg { transform: rotate(45deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-panel p { padding: 0 24px 22px; font-size: 15px; color: var(--text); }

/* ---------- 10 CTA final ---------- */
.final { position: relative; overflow: hidden; border: 1px solid var(--border); padding: 24px; }
.final-inner { position: relative; border-radius: 32px; padding: clamp(36px, 6vw, 72px); text-align: center; display: grid; gap: 22px; justify-items: center; }
.final h2 { max-width: 820px; }
.final .lead { margin: 0 auto; }

/* ---------- Rodapé ---------- */
.site-footer { position: relative; z-index: 2; border-top: 1px dashed var(--border); padding: 64px var(--gutter) 40px; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; gap: 36px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; } }
.footer-grid h4 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14px; }
.footer-grid ul a { color: var(--text); }
.footer-grid ul a:hover { color: var(--cyan); }
.footer-brand img { height: 24px; width: auto; margin-bottom: 14px; }
.footer-brand p, .footer-company { font-size: 13px; color: var(--muted); line-height: 1.7; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border); color: var(--text); }
.socials a:hover { border-color: var(--cyan); color: var(--cyan); }
.footer-bottom { max-width: var(--max); margin: 40px auto 0; padding-top: 22px; border-top: 1px solid var(--border); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }

/* ---------- Revelar na rolagem ---------- */
.js .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.js .reveal.is-in { opacity: 1; transform: none; }
.hero .reveal:nth-child(2) { transition-delay: 0.1s; }
.hero .reveal:nth-child(3) { transition-delay: 0.2s; }
.hero .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---------- Modal de diagnóstico ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(5, 7, 10, 0.78); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.diagnostic-modal { position: relative; width: 100%; max-width: 560px; max-height: calc(100vh - 32px); overflow-y: auto; padding: 0 0 20px; }
.modal-progress { height: 3px; background: var(--border); }
.modal-progress-bar { height: 100%; width: 0; background: var(--cyan); box-shadow: 0 0 12px rgba(34, 211, 238, 0.8); transition: width 0.35s; }
.modal-topbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px 0; }
.modal-step-count { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.modal-close { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--border); color: var(--text); }
.modal-close:hover { border-color: var(--cyan); color: var(--cyan); }
.modal-body { padding: 20px 24px 8px; }
.modal-screen { display: none; }
.modal-screen.is-active { display: grid; gap: 18px; animation: screen-in 0.35s ease-out; }
@keyframes screen-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.modal-screen h3 { font-family: var(--font-display); font-size: clamp(22px, 3vw, 28px); font-weight: 600; color: #fff; line-height: 1.15; letter-spacing: -0.02em; }
.screen-sub { font-size: 15px; color: var(--muted); }
.mono-label { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); }
.field input, .field textarea { width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); padding: 14px 2px; color: #fff; font-size: 18px; font-family: var(--font-body); transition: border-color 0.25s; }
.field textarea { min-height: 110px; resize: vertical; border: 1px solid rgba(255, 255, 255, 0.14); padding: 14px; font-size: 16px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cyan); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.3); }
.option-list { display: grid; gap: 10px; }
.option-btn { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; text-align: left; padding: 15px 18px; background: var(--surface); border: 1px solid var(--border); color: var(--text); font-size: 15px; font-weight: 500; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.option-btn::after { content: ""; width: 14px; height: 14px; border: 1px solid var(--border); flex-shrink: 0; }
.option-btn:hover { border-color: rgba(34, 211, 238, 0.5); color: #fff; }
.option-btn.is-selected { border-color: var(--cyan); background: rgba(34, 211, 238, 0.08); color: #fff; }
.option-btn.is-selected::after { background: var(--cyan); border-color: var(--cyan); }
.modal-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 24px 0; }
.btn-ghost { background: transparent; border: 0; color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 4px; }
.btn-ghost:hover { color: #fff; }
.modal-consent { padding: 14px 24px 0; font-size: 12px; color: var(--faint); }
.modal-consent a { color: var(--text); text-decoration: underline; }

/* ---------- WhatsApp flutuante ---------- */
.wa-fab { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center; background: var(--cyan); color: var(--bg); border: 0; border-radius: 50%; box-shadow: 0 12px 34px -8px rgba(34, 211, 238, 0.75); transition: transform 0.2s; }
.wa-fab:hover { transform: translateY(-3px); }
.wa-panel { position: fixed; right: 22px; bottom: 96px; z-index: 60; width: min(360px, calc(100vw - 32px)); padding: 24px; display: grid; gap: 12px; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity 0.25s, transform 0.25s; }
.wa-panel.is-open { opacity: 1; transform: none; pointer-events: auto; }
.wa-panel h4 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: #fff; }
.wa-close { position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 0; color: var(--muted); }
.wa-close:hover { color: #fff; }
.wa-panel .option-list { gap: 8px; }
.wa-panel .option-btn { padding: 11px 14px; font-size: 14px; }
.wa-panel form { display: grid; gap: 10px; }
.wa-panel .field input { font-size: 15px; padding: 12px 2px; }
.field-error { display: none; font-size: 12px; color: var(--neg); }
.field-error.is-visible { display: block; }

/* ---------- Cookies ---------- */
.cookie-backdrop { position: fixed; inset: 0; z-index: 89; background: rgba(5, 7, 10, 0.5); opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.cookie-backdrop.is-visible { opacity: 1; pointer-events: auto; }
.cookie-banner { position: fixed; left: 16px; bottom: 16px; z-index: 90; width: min(420px, calc(100vw - 32px)); max-height: calc(100vh - 32px); overflow-y: auto; padding: 24px; display: grid; gap: 16px; opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity 0.3s, transform 0.3s; }
.cookie-banner.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.cookie-banner-header { display: flex; align-items: center; gap: 12px; }
.cookie-banner-icon { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; color: var(--cyan); border: 1px dashed rgba(34, 211, 238, 0.5); flex-shrink: 0; }
.cookie-banner-title { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: #fff; }
.cookie-banner-brand { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); }
.cookie-banner-text { font-size: 13px; line-height: 1.6; color: var(--text); }
.cookie-banner-text a { text-decoration: underline; }
.cookie-toggles { display: grid; gap: 14px; }
.cookie-toggle-label { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 14px; font-weight: 600; color: #fff; }
.cookie-toggle-desc { font-size: 12px; color: var(--muted); margin-top: 4px; }
.switch { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch-track { position: absolute; inset: 0; background: var(--border); transition: background 0.2s; pointer-events: none; }
.switch-track::after { content: ""; position: absolute; left: 3px; top: 3px; width: 16px; height: 16px; background: #fff; transition: transform 0.2s; }
.switch input:checked + .switch-track { background: var(--teal); }
.switch input:checked + .switch-track::after { transform: translateX(18px); }
.switch input:disabled + .switch-track { opacity: 0.6; }
.cookie-actions { display: grid; gap: 10px; }
.cookie-reject-link { background: transparent; border: 0; color: var(--muted); font-size: 12px; text-decoration: underline; padding: 4px; }
.cookie-reject-link:hover { color: #fff; }

/* ---------- 03 Diagnóstico gratuito ---------- */
.diag { display: grid; gap: 28px; align-items: start; }
@media (min-width: 960px) { .diag { grid-template-columns: 5fr 7fr; gap: 48px; } }
.diag-steps { display: grid; gap: 22px; align-content: start; }
.diag-steps ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; border-left: 1px dashed var(--border); }
.diag-steps li { display: flex; gap: 16px; padding: 14px 0 14px 20px; position: relative; }
.diag-num { position: absolute; left: -14px; top: 12px; width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; background: var(--cyan); color: var(--bg); font-family: var(--font-mono); font-size: 12px; font-weight: 700; }
.diag-steps li div { display: grid; gap: 2px; padding-left: 16px; }
.diag-steps li strong { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: #fff; }
.diag-steps li span:not(.diag-num) { font-size: 14px; color: var(--muted); }
.diag-steps .btn-glow { justify-self: start; margin-top: 8px; }
.diag-gets { display: grid; gap: 14px; }
.diag-get { display: flex; gap: 18px; align-items: flex-start; padding: 24px; }
.diag-get h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.diag-get p { font-size: 15px; }
.diag-get .icon-box { flex-shrink: 0; border-radius: 0; }

/* ---------- 04 Depois do fechamento (4 passos) ---------- */
@media (min-width: 700px) { .steps-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .steps-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- 05 Planos: Base em destaque e escada de evolução ---------- */
.plans-layout { display: grid; gap: 22px; align-items: stretch; }
@media (min-width: 1000px) { .plans-layout { grid-template-columns: 1.2fr 1fr; } }
.plan-base { padding: clamp(28px, 3.5vw, 40px); gap: 16px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)); box-shadow: 0 0 70px -26px rgba(34, 211, 238, 0.5); }
.plan-base h3 { font-size: clamp(28px, 3vw, 36px); }
.plan-base .plan-flag { left: 32px; transform: none; }
.plan-base-cols { display: grid; gap: 22px; margin: 6px 0 8px; }
@media (min-width: 640px) { .plan-base-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.plan-base-cols ul { flex: none; }
.ladder { display: grid; gap: 18px; height: 100%; }
.plan-step { padding: clamp(28px, 3vw, 36px); gap: 16px; height: 100%; border: 1px solid rgba(34, 211, 238, 0.3); box-shadow: 0 0 55px -24px rgba(34, 211, 238, 0.4); }
.plan-step h3 { font-size: clamp(24px, 2.4vw, 28px); }
.plan-step .btn-outline { border-width: 1.5px; font-weight: 700; }
.plan-step .btn-outline:hover { box-shadow: 0 0 30px -8px rgba(34, 211, 238, 0.7); }
.plan-wl { position: relative; overflow: hidden; padding: 26px; display: flex; flex-direction: column; gap: 14px; border-color: rgba(8, 145, 178, 0.6); background-color: rgba(8, 145, 178, 0.06); }
.plan-wl:hover { border-color: rgba(34, 211, 238, 0.6); }
.plan-wl-glow { position: absolute; right: -80px; top: -80px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(8, 145, 178, 0.45), transparent 70%); pointer-events: none; }
.plan-wl h3 { position: relative; font-family: var(--font-display); font-size: 22px; font-weight: 600; color: #fff; }
.plan-wl .sub { position: relative; font-size: 14px; color: var(--muted); }
.plan-wl ul { position: relative; list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.plan-wl li { display: flex; gap: 10px; font-size: 14px; line-height: 1.5; }
.plan-wl .check { color: var(--teal); }
.btn-teal { border-color: var(--teal); color: #67E8F9; position: relative; }
.btn-teal:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* White label como banda destacada, fora da escada */
.plan-wl-featured { margin-top: 22px; padding: clamp(28px, 3.5vw, 40px); display: grid; gap: 26px; align-items: center; border-color: rgba(8, 145, 178, 0.7); background-color: rgba(8, 145, 178, 0.08); box-shadow: 0 0 90px -30px rgba(8, 145, 178, 0.55); }
@media (min-width: 900px) { .plan-wl-featured { grid-template-columns: 1fr auto; gap: 40px; } }
.plan-wl-featured .plan-wl-body { position: relative; display: grid; gap: 18px; }
@media (min-width: 640px) { .plan-wl-featured .plan-wl-body { grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center; } }
.plan-wl-featured .plan-wl-main { display: grid; gap: 8px; }
.plan-wl-featured h3 { font-size: clamp(24px, 2.6vw, 30px); }
.plan-wl-featured .sub { font-size: 15px; }
@media (min-width: 900px) { .plan-wl-featured > .btn-block { width: auto; min-width: 240px; justify-self: end; } }
.btn-teal-solid { position: relative; display: inline-flex; align-items: center; justify-content: center; height: 54px; padding: 0 26px; background: var(--teal); border: 1px solid var(--teal); color: #fff; font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; transition: background 0.2s, transform 0.2s; }
.btn-teal-solid:hover { background: #0aa5c4; }
.btn-teal-solid:active { transform: scale(0.97); }

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}
