/* ClientStay — sistema visual do site institucional */
:root {
  --brand: #238a69;
  --brand-strong: #176d55;
  --brand-deep: #123b30;
  --brand-ink: #0d2a22;
  --sage: #5f9f86;
  --sage-soft: #dcebe4;
  --mint-25: #fbfdfc;
  --mint-50: #f2f8f5;
  --mint-100: #e5f1ec;
  --mint-200: #cbe2d8;
  --ink: #101713;
  --ink-2: #3f4f46;
  --ink-3: #697970;
  --line: #dde7e2;
  --line-strong: #c7d7cf;
  --surface: #fff;
  --surface-soft: #f5f8f6;
  --danger: #c93636;
  --danger-soft: #fff1f1;
  --warning: #9a6200;
  --warning-soft: #fff8e7;
  --info: #2264c7;
  --info-soft: #edf5ff;
  --shadow-sm: 0 1px 2px rgba(6, 37, 28, .05), 0 4px 12px rgba(6, 37, 28, .04);
  --shadow-md: 0 16px 48px rgba(13, 42, 34, .09);
  --shadow-lg: 0 30px 85px rgba(13, 42, 34, .13);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Inter", system-ui, sans-serif;
  --container: 1200px;
  --nav-height: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3, h4 { font-weight: 600; text-wrap: balance; }
p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
ul, ol { margin: 0; padding: 0; }
[hidden] { display: none !important; }
::selection { color: var(--brand-ink); background: var(--mint-200); }
:focus-visible { outline: 3px solid rgba(35, 138, 105, .32); outline-offset: 3px; }

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 14px; color: #fff; background: var(--brand-deep); border-radius: var(--radius-sm); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section--soft { background: var(--surface-soft); border-block: 1px solid var(--line); }
.section-kicker { display: inline-block; margin-bottom: 16px; color: var(--brand-strong); font-size: .75rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.section-kicker--light { color: #b8dccd; }
.section-heading { max-width: 520px; }
.section-heading--center { margin-inline: auto; text-align: center; max-width: 720px; }
.section-heading h1, .section-heading h2 { color: var(--ink); font-size: clamp(2.25rem, 4.5vw, 4rem); font-weight: 600; letter-spacing: -.052em; line-height: 1.08; }
.section-heading p { margin-top: 20px; color: var(--ink-2); font-size: 1.06rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--brand-strong); font-weight: 700; }
.text-link span { transition: transform .2s var(--ease); }
.text-link:hover span { transform: translateX(4px); }
.mono { font-family: var(--mono); }
.muted { color: var(--ink-3); }

/* Navegação */
.site-nav { position: sticky; top: 0; z-index: 100; min-height: var(--nav-height); background: rgba(255, 255, 255, .88); border-bottom: 1px solid transparent; backdrop-filter: blur(18px) saturate(180%); transition: border-color .2s, box-shadow .2s; }
.site-nav.is-scrolled { border-bottom-color: rgba(203, 217, 210, .75); box-shadow: 0 4px 24px rgba(6, 37, 28, .04); }
.site-nav__inner { height: var(--nav-height); display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.brand img { width: 170px; height: auto; }
.site-nav__links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.site-nav__links a, .nav-login { position: relative; color: var(--ink-2); font-size: .875rem; font-weight: 600; transition: color .18s; }
.site-nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--brand); transition: right .2s var(--ease); }
.site-nav__links a:hover, .site-nav__links a[aria-current="page"], .nav-login:hover { color: var(--brand-strong); }
.site-nav__links a:hover::after, .site-nav__links a[aria-current="page"]::after { right: 0; }
.site-nav__actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; border-radius: 10px; background: transparent; flex-direction: column; justify-content: center; gap: 5px; }
.menu-toggle span { width: 100%; height: 2px; border-radius: 4px; background: var(--ink); transition: transform .2s, opacity .2s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: var(--nav-height) 0 0; z-index: 99; display: flex; flex-direction: column; gap: 0; padding: 16px 24px 32px; background: #fff; border-top: 1px solid var(--line); overflow-y: auto; }
.mobile-menu > a:not(.button) { padding: 17px 2px; color: var(--ink); font-size: 1.08rem; font-weight: 650; border-bottom: 1px solid var(--line); }
.mobile-menu .button { margin-top: 20px; }

/* Botões */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 12px 20px; border: 1px solid transparent; border-radius: 11px; font-weight: 750; font-size: .92rem; line-height: 1; cursor: pointer; transition: transform .18s var(--ease), background .18s, border-color .18s, color .18s, box-shadow .18s; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button--small { min-height: 42px; padding: 10px 17px; font-size: .84rem; }
.button--large { min-height: 54px; padding: 16px 24px; font-size: .96rem; }
.button--block { width: 100%; }
.button--primary { color: #fff; background: var(--brand); box-shadow: 0 8px 24px rgba(35, 138, 105, .18); }
.button--primary:hover { background: var(--brand-strong); box-shadow: 0 12px 30px rgba(35, 138, 105, .22); }
.button--secondary { color: var(--ink); background: #fff; border-color: var(--line-strong); }
.button--secondary:hover { border-color: var(--brand); background: var(--mint-25); }
.button--white { color: var(--brand-deep); background: #fff; }
.button--white:hover { background: var(--mint-50); }
.button--quiet { color: var(--ink-2); background: transparent; border-color: var(--line); }
.button[disabled], .button.is-loading { opacity: .58; cursor: not-allowed; transform: none; box-shadow: none; }

/* Landing — hero */
.hero { position: relative; padding: 94px 0 0; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fcfdfc 68%, #f4f8f6 100%); }
.hero-grid { position: absolute; inset: 0 0 15%; pointer-events: none; opacity: .58; background-image: radial-gradient(circle at 1px 1px, rgba(35, 138, 105, .10) 1px, transparent 0), linear-gradient(rgba(18, 59, 48, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 59, 48, .03) 1px, transparent 1px); background-size: 28px 28px, 72px 72px, 72px 72px; mask-image: linear-gradient(to bottom, #000, transparent 92%); }
.hero-glow { --mx: -1000px; --my: -1000px; position: absolute; inset: 0 0 15%; pointer-events: none; opacity: 0; background-image: radial-gradient(circle at 1px 1px, rgba(75, 163, 130, .68) 1px, transparent 0), linear-gradient(rgba(75, 163, 130, .40) 1px, transparent 1px), linear-gradient(90deg, rgba(75, 163, 130, .40) 1px, transparent 1px); background-size: 28px 28px, 72px 72px, 72px 72px; -webkit-mask: radial-gradient(250px circle at var(--mx) var(--my), #000 0%, rgba(0,0,0,.62) 44%, transparent 74%); mask: radial-gradient(250px circle at var(--mx) var(--my), #000 0%, rgba(0,0,0,.62) 44%, transparent 74%); transition: opacity .28s ease; will-change: mask-position, -webkit-mask-position; }
.hero-glow.is-active { opacity: 1; }
.hero__content { position: relative; z-index: 1; max-width: 900px; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 7px 12px; color: var(--brand-strong); background: rgba(238, 250, 245, .86); border: 1px solid var(--mint-200); border-radius: 100px; font-size: .78rem; font-weight: 750; }
.eyebrow > span { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 5px rgba(35, 138, 105, .10); }
.hero h1 { max-width: 880px; margin: 28px auto 22px; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 600; letter-spacing: -.065em; line-height: 1; }
.hero h1 em { color: var(--brand-strong); font-style: normal; }
.hero__content > p { max-width: 700px; margin-inline: auto; color: var(--ink-2); font-size: clamp(1.04rem, 2vw, 1.2rem); line-height: 1.75; }
.hero__actions { display: flex; justify-content: center; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero__assurances { display: flex; justify-content: center; gap: 24px; margin-top: 24px; list-style: none; color: var(--ink-3); font-size: .79rem; }
.hero__assurances li { display: inline-flex; align-items: center; gap: 8px; }
.assurance-check { position: relative; width: 20px; height: 20px; flex: 0 0 20px; border: 1px solid var(--mint-200); border-radius: 50%; background: var(--mint-50); }
.assurance-check::after { content: ""; position: absolute; left: 6px; top: 4px; width: 5px; height: 8px; border: solid var(--brand-strong); border-width: 0 1.8px 1.8px 0; transform: rotate(45deg); }
.hero__visual { position: relative; z-index: 2; margin-top: 70px; }
.product-frame { position: relative; max-width: 1180px; margin-inline: auto; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); animation: product-breathe 7s ease-in-out infinite; }
.product-frame__bar { display: flex; align-items: center; gap: 7px; padding: 16px 22px; background: var(--mint-50); border-bottom: 1px solid var(--line); }
.product-frame__bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--line-strong); }
.product-frame__bar span:nth-child(1) { background: #f0a4a0; }
.product-frame__bar span:nth-child(2) { background: #f3cf8d; }
.product-frame__bar span:nth-child(3) { background: #9fd6b4; }
.product-frame__bar small { margin-left: 10px; color: var(--ink-3); font-size: .75rem; font-weight: 600; }
.product-frame picture, .product-frame img { display: block; width: 100%; height: auto; }

@keyframes product-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.trust-line { border-block: 1px solid var(--line); background: #fff; }
.trust-line__inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.trust-line p { color: var(--ink-2); font-size: .84rem; font-weight: 700; }
.trust-line__inner > div { display: flex; align-items: center; gap: 18px; color: var(--ink-3); font-size: .75rem; font-weight: 600; }
.trust-line i { width: 3px; height: 3px; border-radius: 50%; background: var(--brand); }

/* Landing — recursos */
.bento-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 60px; }
.bento-card { position: relative; min-height: 360px; display: flex; flex-direction: column; padding: 36px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.bento-card:nth-child(1) { background: #fbfdfc; }
.bento-card:nth-child(2) { background: #f6faf8; }
.bento-card:nth-child(3) { background: #eef5f1; }
.bento-card:hover { transform: translateY(-6px); border-color: #bdd3c8; box-shadow: var(--shadow-md); }
.bento-card--wide { grid-column: span 2; }
.feature-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 52px; }
.feature-number { color: var(--sage); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; color: var(--brand-strong); background: rgba(255, 255, 255, .74); border: 1px solid var(--mint-200); border-radius: 13px; transition: transform .35s var(--ease), background-color .35s; }
.bento-card:hover .feature-icon { transform: rotate(-4deg) scale(1.04); background: #fff; }
.feature-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-card__copy { max-width: 510px; }
.bento-card h3 { max-width: 500px; margin-top: 8px; font-size: clamp(1.55rem, 2.7vw, 2.3rem); font-weight: 600; line-height: 1.14; letter-spacing: -.04em; }
.bento-card p { margin-top: 15px; color: var(--ink-2); font-size: .94rem; }
.card-kicker { color: var(--brand-strong); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 34px; }
.feature-tags span { padding: 8px 11px; color: var(--ink-2); background: rgba(255, 255, 255, .72); border: 1px solid rgba(199, 215, 207, .9); border-radius: 999px; font-size: .68rem; font-weight: 600; }
.bento-card--dark { color: #fff; background: linear-gradient(145deg, #143c31 0%, #225946 100%); border-color: #2d6753; }
.bento-card--dark:hover { border-color: #588b77; box-shadow: 0 20px 55px rgba(18, 59, 48, .18); }
.bento-card--dark .feature-number { color: #9fc6b7; }
.bento-card--dark .feature-icon { color: #d9eee5; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .16); }
.bento-card--dark .card-kicker { color: #a8d2c1; }
.bento-card--dark p { color: #c9ddd5; }
.bento-card--dark .feature-tags span { color: #e4f0eb; background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .13); }

/* Landing — mockups decorativos dos cards do bento-grid */
.feature-icon--message { color: #fff; background: var(--brand); border-color: transparent; }

.message-demo { margin-top: auto; padding-top: 24px; }
.message-demo__top { display: flex; align-items: center; gap: 10px; }
.message-demo__top > div { display: flex; flex: 1; min-width: 0; flex-direction: column; }
.message-demo__top b { font-size: .86rem; font-weight: 650; }
.message-demo__top small { color: var(--ink-3); font-size: .72rem; }
.avatar-mini { display: grid; flex-shrink: 0; place-items: center; width: 34px; height: 34px; color: #fff; background: var(--brand); border-radius: 50%; font-size: .72rem; font-weight: 700; }
.status-dot { width: 9px; height: 9px; flex-shrink: 0; border-radius: 50%; background: #4bbf87; box-shadow: 0 0 0 3px rgba(75, 191, 135, .18); }
.chat-bubble { margin-top: 14px; padding: 12px 15px; color: var(--ink-2); background: var(--mint-50); border: 1px solid var(--mint-200); border-radius: 14px 14px 14px 4px; font-size: .84rem; line-height: 1.5; }
.sent-label { display: block; margin-top: 8px; color: var(--ink-3); font-size: .7rem; }

.mini-list { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 24px; }
.mini-list span { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: rgba(255, 255, 255, .6); border: 1px solid var(--line); border-radius: 11px; font-size: .82rem; }
.mini-list b { flex: 1; font-weight: 600; }
.mini-list small { color: var(--ink-3); font-size: .72rem; }
.avatar-dot { width: 8px; height: 8px; flex-shrink: 0; border-radius: 50%; }
.avatar-dot--one { background: var(--brand); }
.avatar-dot--two { background: #e3a23a; }
.avatar-dot--three { background: #4a90d9; }

.spark-bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; margin-top: auto; padding-top: 24px; }
.spark-bars i { flex: 1; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg, var(--mint-200), var(--mint-100)); }
.spark-bars i:nth-child(1) { height: 38%; }
.spark-bars i:nth-child(2) { height: 62%; }
.spark-bars i:nth-child(3) { height: 48%; }
.spark-bars i:nth-child(4) { height: 84%; background: linear-gradient(180deg, var(--brand), var(--brand-strong)); }
.spark-bars i:nth-child(5) { height: 56%; }
.spark-bars i:nth-child(6) { height: 72%; }
.spark-bars i:nth-child(7) { height: 44%; }

.orbit { position: relative; width: 230px; height: 230px; margin: 20px auto 0; }
.orbit__center { position: absolute; top: 50%; left: 50%; z-index: 2; display: grid; place-items: center; width: 64px; height: 64px; transform: translate(-50%, -50%); background: #fff; border-radius: 50%; box-shadow: 0 10px 30px rgba(0, 0, 0, .25); }
.orbit__ring { position: absolute; top: 50%; left: 50%; border: 1px dashed rgba(255, 255, 255, .22); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit__ring--one { width: 150px; height: 150px; animation: orbit-spin 22s linear infinite; }
.orbit__ring--two { width: 230px; height: 230px; animation: orbit-spin 34s linear infinite reverse; }
.orbit__person { position: absolute; z-index: 2; display: grid; place-items: center; width: 40px; height: 40px; color: var(--brand-deep); background: #fff; border-radius: 50%; font-size: .74rem; font-weight: 700; box-shadow: 0 8px 20px rgba(0, 0, 0, .2); }
.orbit__person--one { top: 4px; left: 50%; transform: translateX(-50%); }
.orbit__person--two { bottom: 26px; left: 6px; }
.orbit__person--three { bottom: 26px; right: 6px; }

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Landing — processo e CTAs */
.process { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.process-list { list-style: none; counter-reset: process; }
.process-list li { display: grid; grid-template-columns: 55px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.process-list li:first-child { padding-top: 0; }
.process-list li > span { color: var(--brand); font-family: var(--mono); font-size: .72rem; font-weight: 600; }
.process-list h3 { font-size: 1.22rem; letter-spacing: -.025em; }
.process-list p { margin-top: 7px; color: var(--ink-2); font-size: .92rem; }
.plan-preview { padding-bottom: 24px; }
.plan-preview__panel { display: grid; grid-template-columns: 1.25fr .75fr; gap: 64px; align-items: end; padding: 64px; color: #fff; background: var(--brand-deep); border-radius: var(--radius-xl); overflow: hidden; background-image: radial-gradient(circle at 90% 10%, rgba(95, 159, 134, .28), transparent 38%); }
.plan-preview h2 { max-width: 650px; font-size: clamp(2.2rem, 4.8vw, 4rem); line-height: 1.05; letter-spacing: -.055em; }
.plan-preview p { max-width: 630px; margin-top: 20px; color: #c0d7cd; }
.plan-preview p strong { color: #fff; }
.plan-preview__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.plan-preview__actions small { color: #9fc4b5; }
.final-cta { padding: 120px 0 128px; text-align: center; }
.final-cta__inner { max-width: 820px; }
.final-cta h2 { margin-top: 26px; font-size: clamp(2.45rem, 5vw, 4.6rem); line-height: 1.04; letter-spacing: -.062em; }
.final-cta p { max-width: 600px; margin: 22px auto 30px; color: var(--ink-2); font-size: 1.06rem; }
.final-cta small { display: block; margin-top: 14px; color: var(--ink-3); font-size: .74rem; }

/* Cabeçalhos internos */
.page-hero { position: relative; padding: 92px 0 72px; overflow: hidden; text-align: center; background: linear-gradient(180deg, var(--mint-25), #fff); border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(circle at 1px 1px, rgba(35, 138, 105, .12) 1px, transparent 0); background-size: 30px 30px; mask-image: radial-gradient(ellipse at 50% 35%, #000 0, transparent 70%); }
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 880px; margin: 22px auto 18px; font-size: clamp(2.7rem, 5.8vw, 5.2rem); font-weight: 600; line-height: 1.02; letter-spacing: -.058em; }
.page-hero p { max-width: 690px; margin-inline: auto; color: var(--ink-2); font-size: 1.08rem; }
.page-hero__note { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--ink-3); font-size: .76rem; }
.page-hero__note span { color: var(--brand); }

/* Planos */
.pricing-section { padding: 72px 0 110px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 520px; padding: 28px 24px 24px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.price-card--featured { border: 2px solid var(--brand); box-shadow: 0 18px 45px rgba(35, 138, 105, .12); }
.popular-label { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 12px; color: #fff; background: var(--brand); border-radius: 100px; font-size: .66rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.price-card__name { font-size: .82rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.price-card__description { min-height: 47px; margin-top: 9px; color: var(--ink-3); font-size: .78rem; }
.price-card__price { display: flex; align-items: baseline; gap: 4px; margin-top: 24px; }
.price-card__price sup { align-self: flex-start; margin-top: 8px; color: var(--ink-2); font-size: .75rem; font-weight: 700; }
.price-card__price strong { font-family: var(--mono); font-size: 2.15rem; line-height: 1; letter-spacing: -.07em; }
.price-card__price span { color: var(--ink-3); font-size: .72rem; }
.price-card__trial { margin: 10px 0 22px; color: var(--brand-strong); font-size: .7rem; font-weight: 750; }
.price-card .button { margin-bottom: 24px; }
.price-card__features { display: flex; flex-direction: column; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line); list-style: none; }
.price-card__features li { display: flex; gap: 9px; color: var(--ink-2); font-size: .76rem; }
.price-card__features li span { width: 19px; height: 19px; flex: 0 0 19px; display: inline-grid; place-items: center; color: var(--brand-strong); background: var(--mint-50); border: 1px solid var(--mint-200); border-radius: 50%; font-size: .62rem; font-weight: 700; }
.price-card__overage { margin-top: auto; padding-top: 18px; color: var(--ink-3); font-size: .66rem; }
.plan-api-note { min-height: 26px; margin-top: 20px; color: var(--ink-3); text-align: center; font-size: .72rem; }
.comparison { padding: 104px 0; background: var(--surface-soft); border-block: 1px solid var(--line); }
.comparison .section-heading { margin-bottom: 46px; }
.comparison-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.comparison table { width: 100%; min-width: 760px; border-collapse: collapse; }
.comparison th, .comparison td { padding: 18px 22px; text-align: center; border-bottom: 1px solid var(--line); font-size: .82rem; }
.comparison th:first-child, .comparison td:first-child { text-align: left; }
.comparison th { color: var(--ink); font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; }
.comparison td { color: var(--ink-2); }
.comparison tbody tr:last-child td { border-bottom: 0; }
.check { color: transparent; font-size: 0; }
.check::before { content: "✓"; width: 20px; height: 20px; display: inline-grid; place-items: center; color: var(--brand-strong); background: var(--mint-50); border: 1px solid var(--mint-200); border-radius: 50%; font-size: .65rem; font-weight: 700; }
.faq { padding: 110px 0; }
.faq__layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; color: var(--ink); background: transparent; border: 0; text-align: left; font-weight: 700; }
.faq-item button span:last-child { color: var(--brand); font-size: 1.25rem; transition: transform .2s; }
.faq-item button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-item__answer { padding: 0 42px 22px 0; color: var(--ink-2); font-size: .9rem; }

/* Formulários e cadastro */
.form-page { min-height: calc(100vh - var(--nav-height)); padding: 58px 0 96px; background: var(--surface-soft); }
.signup-shell { display: grid; grid-template-columns: 300px minmax(0, 720px); justify-content: center; gap: 34px; align-items: start; min-width: 0; }
.signup-shell > * { min-width: 0; }
.signup-aside { position: sticky; top: 108px; padding: 30px; color: #fff; background: var(--brand-deep); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.signup-aside h1 { margin-top: 16px; font-size: 1.85rem; line-height: 1.13; letter-spacing: -.04em; }
.signup-aside > p { margin-top: 13px; color: #b8d2c7; font-size: .84rem; }
.steps { display: flex; flex-direction: column; gap: 5px; margin-top: 30px; list-style: none; }
.steps li { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: center; padding: 9px; color: #9ebbb0; border-radius: 10px; font-size: .75rem; font-weight: 650; }
.steps li span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; font-family: var(--mono); font-size: .64rem; }
.steps li.is-active { color: #fff; background: rgba(255,255,255,.08); }
.steps li.is-active span { color: var(--brand-deep); background: #9ee7cb; border-color: #9ee7cb; }
.steps li.is-complete span { color: #fff; background: var(--brand); border-color: var(--brand); }
.signup-aside__trust { margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #9ebbb0; font-size: .68rem; }
.form-card { padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-step[hidden] { display: none; }
.form-step__head { margin-bottom: 30px; }
.form-step__head > span { color: var(--brand-strong); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.form-step__head h2 { margin-top: 6px; font-size: 1.75rem; letter-spacing: -.04em; }
.form-step__head p { margin-top: 8px; color: var(--ink-3); font-size: .84rem; }
.plan-choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.plan-choice { position: relative; display: block; cursor: pointer; }
.plan-choice input { position: absolute; opacity: 0; pointer-events: none; }
.plan-choice__body { display: block; width: 100%; min-height: 148px; padding: 18px; border: 1px solid var(--line); border-radius: 13px; transition: border-color .18s, background .18s, box-shadow .18s; }
.plan-choice input:checked + .plan-choice__body { border: 2px solid var(--brand); padding: 17px; background: var(--mint-25); box-shadow: 0 7px 22px rgba(35, 138, 105, .09); }
.plan-choice input:focus-visible + .plan-choice__body { outline: 3px solid rgba(35, 138, 105, .26); outline-offset: 2px; }
.plan-choice__top { display: flex; justify-content: space-between; gap: 10px; }
.plan-choice__top strong { font-size: .84rem; text-transform: uppercase; letter-spacing: .05em; }
.plan-choice__top span { font-family: var(--mono); font-size: .85rem; font-weight: 700; }
.plan-choice__body p { margin-top: 17px; color: var(--ink-2); font-size: .73rem; }
.plan-choice__body small { display: block; margin-top: 5px; color: var(--ink-3); font-size: .66rem; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.fieldset-reset { min-width: 0; margin: 0; padding: 0; border: 0; }
.field-grid .field--full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label, .field > span { color: var(--ink-2); font-size: .72rem; font-weight: 750; }
.field label small { color: var(--ink-3); font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px 14px; color: var(--ink); background: #fff; border: 1px solid var(--line-strong); border-radius: 10px; outline: none; transition: border-color .18s, box-shadow .18s; }
.field textarea { min-height: 145px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9aa8a1; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(35, 138, 105, .09); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(201,54,54,.07); }
.field-error { min-height: 16px; color: var(--danger); font-size: .64rem; }
.password-wrap { position: relative; }
.password-wrap input { padding-right: 76px; }
.password-toggle { position: absolute; top: 50%; right: 11px; transform: translateY(-50%); padding: 6px; color: var(--brand-strong); background: transparent; border: 0; font-size: .66rem; font-weight: 750; }
.password-meter { height: 4px; margin-top: 2px; overflow: hidden; background: var(--line); border-radius: 10px; }
.password-meter i { display: block; width: 0; height: 100%; background: var(--danger); transition: width .2s, background .2s; }
.password-meter i[data-score="1"] { width: 25%; }
.password-meter i[data-score="2"] { width: 50%; background: #d69220; }
.password-meter i[data-score="3"] { width: 75%; background: #d69220; }
.password-meter i[data-score="4"] { width: 100%; background: var(--brand); }
.segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 24px; padding: 4px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 11px; }
.segmented label { position: relative; }
.segmented input { position: absolute; opacity: 0; }
.segmented span { display: block; padding: 10px; color: var(--ink-3); border-radius: 8px; text-align: center; font-size: .75rem; font-weight: 700; cursor: pointer; }
.segmented input:checked + span { color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); }
.form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.form-actions--end { justify-content: flex-end; }
.review-plan { display: flex; justify-content: space-between; gap: 20px; padding: 22px; background: var(--brand-deep); border-radius: 14px; color: #fff; }
.review-plan span { display: block; color: #a9c7bb; font-size: .67rem; text-transform: uppercase; letter-spacing: .08em; }
.review-plan h3 { margin-top: 4px; font-size: 1.35rem; }
.review-plan__price { text-align: right; }
.review-plan__price strong { font-family: var(--mono); font-size: 1.35rem; }
.review-plan__price small { display: block; color: #a9c7bb; font-size: .65rem; }
.review-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.review-box { padding: 17px; border: 1px solid var(--line); border-radius: 12px; }
.review-box > span { color: var(--ink-3); font-size: .63rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.review-box p { margin-top: 7px; color: var(--ink-2); font-size: .72rem; line-height: 1.6; }
.pre-line { white-space: pre-line; }
.consents { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.check-field { position: relative; display: grid; grid-template-columns: 19px 1fr; gap: 10px; align-items: start; color: var(--ink-2); font-size: .72rem; cursor: pointer; }
.check-field input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--brand); }
.check-field a { color: var(--brand-strong); text-decoration: underline; }
.checkout-assurance { display: flex; align-items: center; gap: 9px; margin-top: 18px; color: var(--ink-3); font-size: .65rem; }
.checkout-assurance svg { width: 16px; fill: none; stroke: var(--brand); stroke-width: 2; }
.alert { display: flex; gap: 11px; margin: 18px 0; padding: 14px 16px; border: 1px solid; border-radius: 11px; font-size: .75rem; }
.alert strong { display: block; margin-bottom: 2px; }
.alert--error { color: #852727; background: var(--danger-soft); border-color: #f1c2c2; }
.alert--warning { color: #78500b; background: var(--warning-soft); border-color: #eed79d; }
.alert--info { color: #234f91; background: var(--info-soft); border-color: #c6daf7; }
.alert--success { color: #176548; background: var(--mint-50); border-color: var(--mint-200); }

/* Sucesso/status */
.status-page { min-height: calc(100vh - var(--nav-height)); display: grid; place-items: center; padding: 70px 24px; background: var(--surface-soft); }
.status-card { width: min(100%, 610px); padding: 48px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); text-align: center; }
.status-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 22px; color: var(--brand-strong); background: var(--mint-50); border: 1px solid var(--mint-200); border-radius: 50%; }
.status-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.status-card h1 { font-size: 2rem; letter-spacing: -.04em; }
.status-card > p { margin-top: 12px; color: var(--ink-2); }
.status-progress { display: grid; grid-template-columns: repeat(3, 1fr); margin: 32px 0; }
.status-progress span { position: relative; padding-top: 30px; color: var(--ink-3); font-size: .64rem; font-weight: 700; }
.status-progress span::before { content: ""; position: absolute; top: 7px; left: 50%; z-index: 2; width: 12px; height: 12px; transform: translateX(-50%); background: var(--line-strong); border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px var(--line); }
.status-progress span::after { content: ""; position: absolute; top: 12px; left: -50%; right: 50%; height: 2px; background: var(--line); }
.status-progress span:first-child::after { display: none; }
.status-progress span.is-active::before, .status-progress span.is-complete::before { background: var(--brand); box-shadow: 0 0 0 1px var(--brand); }
.status-progress span.is-complete::after, .status-progress span.is-active::after { background: var(--brand); }
.status-progress span.is-active { color: var(--brand-strong); }
.status-message { min-height: 48px; margin-bottom: 24px; padding: 13px; color: var(--ink-2); background: var(--surface-soft); border-radius: 10px; font-size: .75rem; }

/* Contato */
.contact-section { padding: 88px 0 112px; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.contact-copy h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); line-height: 1.08; letter-spacing: -.05em; }
.contact-copy > p { margin-top: 18px; color: var(--ink-2); }
.contact-list { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.contact-item { display: grid; grid-template-columns: 42px 1fr; gap: 13px; }
.contact-item__icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--brand-strong); background: var(--mint-50); border-radius: 12px; }
.contact-item__icon svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.contact-item strong { display: block; font-size: .8rem; }
.contact-item a, .contact-item p { margin-top: 3px; color: var(--ink-3); font-size: .74rem; }
.contact-card { padding: 36px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }

/* Conteúdo jurídico */
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 760px); justify-content: center; gap: 68px; padding: 76px 0 120px; }
.legal-toc { position: sticky; top: 108px; align-self: start; padding: 20px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 14px; }
.legal-toc strong { display: block; margin-bottom: 12px; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.legal-toc a { display: block; padding: 7px 0; color: var(--ink-3); font-size: .7rem; transition: color .18s; }
.legal-toc a:hover { color: var(--brand-strong); }
.legal-document { color: var(--ink-2); }
.legal-document .legal-notice { margin-bottom: 34px; padding: 17px 19px; color: #6f520f; background: var(--warning-soft); border: 1px solid #edd8a5; border-radius: 12px; font-size: .72rem; }
.legal-document section { scroll-margin-top: 105px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.legal-document section:first-of-type { padding-top: 0; }
.legal-document section:last-child { border-bottom: 0; }
.legal-document h2 { margin-bottom: 13px; color: var(--ink); font-size: 1.38rem; letter-spacing: -.03em; }
.legal-document h3 { margin: 22px 0 8px; color: var(--ink); font-size: .98rem; }
.legal-document p, .legal-document li { font-size: .86rem; line-height: 1.78; }
.legal-document p + p { margin-top: 13px; }
.legal-document ul, .legal-document ol { display: flex; flex-direction: column; gap: 8px; margin: 14px 0 0 22px; }
.legal-document a { color: var(--brand-strong); text-decoration: underline; }
.legal-meta { display: flex; justify-content: center; gap: 18px; margin-top: 22px; color: var(--ink-3); font-size: .72rem; }

/* Footer */
.site-footer { color: #fff; background: var(--brand-ink); border-top: 1px solid #23483d; }
.site-footer__top { display: grid; grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr); gap: 80px; padding: 76px 0 58px; }
.site-footer__brand .brand img { width: 178px; }
.site-footer__brand p { max-width: 330px; margin-top: 18px; color: #b9cdc5; font-size: .86rem; line-height: 1.7; }
.site-footer__columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 38px; }
.site-footer__columns > div { display: flex; flex-direction: column; gap: 10px; }
.site-footer__columns strong { margin-bottom: 6px; color: #e9f2ee; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer__columns a { color: #b9cdc5; font-size: .78rem; line-height: 1.55; transition: color .18s, transform .18s; overflow-wrap: anywhere; }
.site-footer__columns a:hover { color: #fff; transform: translateX(2px); }
.site-footer__legal { display: flex; justify-content: space-between; gap: 40px; align-items: flex-end; padding: 32px 0 38px; border-top: 1px solid rgba(211, 232, 223, .16); }
.site-footer__legal p, .site-footer__legal a { color: #a9bfb6; font-size: .72rem; line-height: 1.8; }
.site-footer__legal-links { display: flex; align-items: center; gap: 20px; }
.site-footer__legal a { color: #d6e5df; white-space: nowrap; }
.site-footer__legal a:hover { color: #fff; }

/* Animações progressivas */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal--delay { transition-delay: .1s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .site-nav__links { gap: 18px; }
}

@media (max-width: 1050px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .price-card { min-height: 485px; }
  .signup-shell { grid-template-columns: 250px minmax(0, 680px); gap: 22px; }
  .plan-preview__panel { padding: 48px; }
}

@media (max-width: 1024px) {
  .site-nav__links, .nav-login, .site-nav__actions > .button { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 860px) {
  .hero { padding-top: 72px; }
  .hero__assurances { flex-wrap: wrap; gap: 10px 20px; }
  .trust-line__inner { flex-direction: column; justify-content: center; padding: 24px 0; text-align: center; }
  .process { grid-template-columns: 1fr; gap: 55px; }
  .plan-preview__panel { grid-template-columns: 1fr; gap: 34px; }
  .faq__layout { grid-template-columns: 1fr; gap: 45px; }
  .signup-shell { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .signup-aside { position: static; padding: 24px; }
  .signup-aside h1, .signup-aside > p, .signup-aside__trust { display: none; }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 0; }
  .steps li { grid-template-columns: 1fr; justify-items: center; text-align: center; font-size: .6rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; display: none; }
  .site-footer__top { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 32px, var(--container)); }
  .section { padding: 82px 0; }
  .brand img { width: 151px; }
  .hero { padding-top: 58px; }
  .hero h1 { letter-spacing: -.06em; }
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__assurances { align-items: center; flex-direction: column; gap: 4px; }
  .hero__visual { width: calc(100% + 160px); margin-left: -80px; margin-top: 48px; }
  .product-frame__bar { padding: 12px 16px; }
  .orbit { width: 180px; height: 180px; }
  .orbit__ring--one { width: 118px; height: 118px; }
  .orbit__ring--two { width: 180px; height: 180px; }
  .trust-line__inner > div { flex-direction: column; gap: 5px; }
  .trust-line i { display: none; }
  .bento-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .bento-card { min-height: auto; padding: 28px; }
  .feature-card__top { margin-bottom: 38px; }
  .plan-preview { padding-top: 70px; }
  .plan-preview__panel { padding: 36px 26px; border-radius: 22px; }
  .final-cta { padding: 90px 0; }
  .page-hero { padding: 68px 0 54px; }
  .pricing-section { padding-top: 55px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .comparison { padding: 78px 0; }
  .faq { padding: 82px 0; }
  .form-page { padding: 24px 0 70px; }
  .signup-aside { padding: 13px; }
  .steps li { padding: 6px 2px; }
  .steps li span { width: 25px; height: 25px; }
  .form-card { padding: 26px 20px; }
  .field-grid, .plan-choice-grid, .review-details { grid-template-columns: 1fr; }
  .field-grid .field--full { grid-column: auto; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .button { width: 100%; }
  .review-plan { flex-direction: column; }
  .review-plan__price { text-align: left; }
  .status-card { padding: 36px 22px; }
  .contact-section { padding: 65px 0 85px; }
  .contact-card { padding: 26px 20px; }
  .legal-layout { padding: 55px 0 85px; }
  .site-footer__top { padding-top: 52px; }
  .site-footer__columns { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
  .site-footer__columns > div:last-child { grid-column: 1 / -1; }
  .site-footer__legal { flex-direction: column; align-items: flex-start; gap: 18px; }
  .site-footer__legal-links { flex-wrap: wrap; gap: 10px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
