/* KODIAK IA — Landing Page premium
   Estrutura: tokens -> base -> layout -> componentes -> responsivo */

:root {
  --bg: #05070d;
  --bg-2: #070b14;
  --ink: #f5f8ff;
  --ink-soft: rgba(226, 235, 255, 0.68);
  --ink-dim: rgba(200, 214, 240, 0.5);
  --blue: #1d7dff;
  --blue-bright: #4aa3ff;
  --blue-deep: #0b2a5e;
  --line: rgba(140, 180, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.075);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.9);
  --glow: 0 0 60px -12px rgba(29, 125, 255, 0.45);
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; letter-spacing: -0.03em; line-height: 1.08; font-weight: 600; }
p { margin: 0; }

/* ---------- fundo ---------- */
.bg-layer { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bg-grid {
  position: absolute; inset: -20%;
  background-image:
    linear-gradient(to right, rgba(140, 180, 255, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(140, 180, 255, 0.055) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
}
/* linhas geométricas inspiradas nas facetas do urso KODIAK */
.bg-facets {
  position: absolute; inset: 0; opacity: 0.35;
  background-image:
    linear-gradient(58deg, transparent 49.85%, rgba(74, 163, 255, 0.16) 50%, transparent 50.15%),
    linear-gradient(-58deg, transparent 49.85%, rgba(74, 163, 255, 0.13) 50%, transparent 50.15%),
    linear-gradient(24deg, transparent 49.9%, rgba(140, 180, 255, 0.09) 50%, transparent 50.1%);
  background-size: 340px 340px, 420px 420px, 560px 560px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000, transparent 78%);
}
.bg-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55; }
.bg-glow.a { width: 60vw; height: 60vw; top: -22vw; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(29, 125, 255, 0.5), transparent 65%); }
.bg-glow.b { width: 46vw; height: 46vw; top: 60%; left: -14vw;
  background: radial-gradient(circle, rgba(11, 42, 94, 0.75), transparent 65%); }
.bg-glow.c { width: 40vw; height: 40vw; top: 120%; right: -12vw;
  background: radial-gradient(circle, rgba(74, 163, 255, 0.28), transparent 65%); }

/* ---------- utilitários ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.section { padding: 82px 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue-bright); font-weight: 600;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: linear-gradient(90deg, transparent, var(--blue-bright)); }
.section-title { font-size: clamp(28px, 6.4vw, 46px); max-width: 20ch; margin-top: 16px; }
.section-sub { margin-top: 18px; color: var(--ink-soft); font-size: clamp(15px, 3.9vw, 17px); max-width: 56ch; }
.grad-text { background: linear-gradient(120deg, #ffffff 20%, var(--blue-bright) 55%, #9cc8ff 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- liquid glass ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(20px) saturate(160%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
/* reflexo superior */
.glass::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 42%);
}
/* brilho de borda (electric blue edge) */
.glass::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.02) 40%, rgba(74, 163, 255, 0.42));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
/* reflexo dinâmico que segue o mouse (desktop) + refração suave */
.glass-liquid {
  transition: transform 0.6s var(--ease), background 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.glass-liquid > .liquid-sheen {
  position: absolute; inset: -1px; pointer-events: none; border-radius: inherit;
  opacity: 0; transition: opacity 0.5s var(--ease);
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 0%),
    rgba(174, 214, 255, 0.16),
    rgba(29, 125, 255, 0.08) 40%,
    transparent 70%
  );
}
.has-pointer .glass-liquid:hover { transform: translateY(-6px); background: var(--glass-strong);
  box-shadow: var(--shadow), var(--glow); }
.has-pointer .glass-liquid:hover > .liquid-sheen { opacity: 1; }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 999px; padding: 17px 26px;
  font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  min-height: 54px; width: auto; position: relative; overflow: hidden;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, #0e5fd8 55%, var(--blue-bright) 100%);
  box-shadow: 0 18px 40px -18px rgba(29, 125, 255, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-primary:hover { box-shadow: 0 24px 55px -18px rgba(29, 125, 255, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.4); transform: translateY(-2px); }
/* luz líquida percorrendo o CTA */
.btn-liquid::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 45%; left: -60%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-16deg);
  animation: sweep 5.5s var(--ease) infinite;
  pointer-events: none;
}
@keyframes sweep {
  0% { left: -60%; }
  55%, 100% { left: 140%; }
}
.btn-ghost {
  color: var(--ink); background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line); backdrop-filter: blur(14px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(5, 7, 13, 0.6);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.header.is-scrolled { border-color: var(--line); background: rgba(5, 7, 13, 0.82); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 52px; gap: 12px;
  transition: height 0.4s var(--ease); }
.header.is-scrolled .header-inner { height: 46px; }
.cta-long { display: none; }
.cta-short { display: inline; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: 0.02em; font-size: 15px; }
.brand-bear {
  width: 30px; height: 30px; object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(74, 163, 255, 0.55));
}
.brand small { display: none; font-size: 10px; letter-spacing: 0.24em; color: var(--ink-dim); font-weight: 500; }
.header .btn { padding: 9px 16px; min-height: 38px; font-size: 13px; }

/* ---------- hero ---------- */
.hero { padding: 40px 0 64px; }
.hero-inner { text-align: center; max-width: 860px; margin: 0 auto; }
.hero h1 { font-size: clamp(33px, 8.6vw, 64px); font-weight: 600; margin-top: 18px; }
.hero-sub { margin: 16px auto 0; color: var(--ink-soft); font-size: clamp(15.5px, 4.2vw, 19px); max-width: 40ch; }
.hero-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.hero-note { margin-top: 14px; font-size: 13px; color: var(--ink-soft); }
.hero-note strong { color: #fff; font-weight: 600; }

.pill-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px 7px 10px;
  border-radius: 999px; font-size: 12.5px; color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(74, 163, 255, 0.18); }

/* highlights */
.highlights { margin-top: 30px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.hl { padding: 15px 14px; border-radius: var(--radius-sm); text-align: left; }
.hl .k { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); }
.hl .v { margin-top: 6px; font-size: 16.5px; font-weight: 600; letter-spacing: -0.02em; }
.hl .v em { font-style: normal; color: var(--blue-bright); }

/* VSL */
.vsl { margin-top: 26px; padding: 10px; border-radius: 26px; }
.vsl-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(140, 180, 255, 0.2);
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(29, 125, 255, 0.32), transparent 70%),
    linear-gradient(160deg, #0a1220, #05070d);
  display: grid; place-items: center; cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 60px -24px rgba(29, 125, 255, 0.8);
}
.vsl-frame iframe, .vsl-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vsl-play {
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px); transition: transform 0.5s var(--ease), background 0.5s var(--ease);
  box-shadow: 0 0 46px -10px rgba(74, 163, 255, 0.75);
}
.vsl-frame:hover .vsl-play { transform: scale(1.07); background: rgba(255, 255, 255, 0.18); }
.vsl-play::after {
  content: ""; width: 0; height: 0; margin-left: 5px;
  border-left: 17px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent;
}
.vsl-label { position: absolute; bottom: 13px; left: 15px; font-size: 11px; color: var(--ink-dim); letter-spacing: 0.1em; text-transform: uppercase; }
.vsl-time {
  position: absolute; bottom: 12px; right: 14px; font-size: 11px; color: #dbeaff;
  padding: 4px 9px; border-radius: 999px; background: rgba(29, 125, 255, 0.18);
  border: 1px solid rgba(74, 163, 255, 0.32);
}

/* ---------- transição líquida entre seções ---------- */
.liquid-divider { position: relative; height: 2px; margin: 0 auto; max-width: var(--max); overflow: hidden; }
.liquid-divider span {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(74, 163, 255, 0.55) 35%, rgba(255, 255, 255, 0.75) 50%, rgba(74, 163, 255, 0.55) 65%, transparent);
  transform: translateX(-100%);
  filter: blur(0.4px);
}
.liquid-divider.is-in span { animation: flow 2.2s var(--ease) forwards; }
@keyframes flow {
  0% { transform: translateX(-100%); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: translateX(0); opacity: 0.55; }
}

/* ---------- prova visual / showcase de portfólio ---------- */
.proof-grid { margin-top: 40px; display: grid; gap: 18px; }

.showcase {
  position: relative; width: 100%; max-width: 520px; margin: 0 auto;
  padding: 26px 8px 12px; isolation: isolate;
}
.showcase-glow {
  position: absolute; inset: 6% 4% 12%; z-index: -1; border-radius: 40px; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 20%, rgba(29, 125, 255, 0.35), transparent 70%);
  filter: blur(38px); opacity: 0.85;
}
.showcase-card {
  position: relative;
  border-radius: 18px;
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}
/* placeholder neutro premium (troque por <img>) */
.shot {
  width: 100%; height: 100%; border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02) 42%, rgba(255, 255, 255, 0.05)),
    linear-gradient(150deg, rgba(29, 125, 255, 0.22), rgba(5, 7, 13, 0.9) 65%);
  position: relative; overflow: hidden;
}
.shot::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(140, 180, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(140, 180, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
}
.shot img, .shot > img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
.shot-mobile img { object-position: center top; }
.shot:has(img)::after { display: none; }
.shot:has(img) { background: #0a1220; }

/* desktop / laptop */
.showcase-desktop {
  width: 100%; margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 16px;
  background: linear-gradient(170deg, #0b1523, #05070d); padding: 8px 8px 0;
  box-shadow: 0 50px 80px -50px #000, inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 0 70px -34px rgba(29, 125, 255, 0.8);
  backdrop-filter: blur(14px);
}
.device-bar { display: flex; gap: 5px; padding: 4px 4px 8px; }
.device-bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.device-desktop .shot { aspect-ratio: 16 / 10; border-radius: 10px; }
.device-base {
  height: 9px; margin: 8px -8px 0; border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
}

/* mobile */
.showcase-mobile {
  position: absolute; right: 2px; bottom: 0; width: 31%; max-width: 132px; z-index: 3;
}
.device-phone {
  position: relative; width: 100%; aspect-ratio: 9 / 18.5; border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2); padding: 6px;
  background: linear-gradient(170deg, #101c2e, #05070d);
  box-shadow: 0 34px 50px -30px #000, inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.device-phone .shot { border-radius: 15px; }
.phone-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 30%; height: 4px; border-radius: 999px; background: rgba(255, 255, 255, 0.22); z-index: 2;
}

/* card secundário ao fundo */
.showcase-secondary {
  position: absolute; top: 0; left: 8%; right: 8%; height: 62%; z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 16px; overflow: hidden;
  transform: translateY(-16px) scale(0.94); opacity: 0.5;
}
.showcase-secondary .shot { border-radius: 0; }

.has-pointer .showcase:hover .showcase-desktop { transform: translateY(-8px) rotateX(2deg); }
.has-pointer .showcase:hover .showcase-mobile { transform: translateY(-16px); }
.has-pointer .showcase:hover .showcase-secondary { transform: translateY(-26px) scale(0.95); opacity: 0.62; }

.feature-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.check {
  flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; margin-top: 1px;
  display: grid; place-items: center; font-size: 11px; color: #fff;
  background: linear-gradient(135deg, var(--blue), #0a3f9e);
  box-shadow: 0 6px 16px -8px rgba(29, 125, 255, 0.9);
}

/* ---------- planos ---------- */
.plans { margin-top: 40px; display: grid; gap: 18px; align-items: start; }
.plan { padding: 28px 22px 26px; display: flex; flex-direction: column; }
.plan.featured { background: rgba(29, 125, 255, 0.09); box-shadow: var(--shadow), 0 0 70px -25px rgba(29, 125, 255, 0.6); }
.plan-tag {
  position: absolute; top: 16px; right: 16px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px;
  color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 10px 26px -12px rgba(29, 125, 255, 0.9);
}
.plan-name { font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-bright); font-weight: 700; }
.plan-desc { margin-top: 8px; font-size: 14px; color: var(--ink-dim); }
.plan-price { margin-top: 20px; display: flex; align-items: flex-end; gap: 8px; }
.plan-price .amount { font-size: clamp(42px, 11vw, 50px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.plan-price .from { font-size: 13px; color: var(--ink-dim); padding-bottom: 7px; }
.plan-recurring {
  margin-top: 16px; padding: 13px 14px; border-radius: 14px; line-height: 1.35;
  background: rgba(29, 125, 255, 0.14); border: 1px solid rgba(74, 163, 255, 0.34);
  display: grid; gap: 4px;
}
.plan-recurring strong { color: #fff; font-size: 15px; letter-spacing: -0.01em; }
.plan-recurring span { font-size: 12.5px; color: #cfe2ff; }
.plan ul { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 11px; }
.plan li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); align-items: flex-start; }
.plan li small { display: block; margin-top: 3px; font-size: 12.5px; color: var(--ink-dim); }
.plan .btn { margin-top: auto; }

.care-banner {
  margin-top: 24px; padding: 20px 22px; display: flex; gap: 16px; align-items: center;
  border-radius: var(--radius);
}
.care-bear { width: 46px; height: 46px; object-fit: contain; flex: 0 0 46px;
  filter: drop-shadow(0 0 14px rgba(74, 163, 255, 0.5)); }
.care-banner strong { display: block; font-size: 15.5px; letter-spacing: -0.01em; }
.care-banner span { display: block; margin-top: 5px; font-size: 13px; color: var(--blue-bright); }

/* ---------- como funciona (processo) ---------- */
.process { margin-top: 42px; position: relative; }
.process-track {
  position: absolute; left: 21px; top: 8px; bottom: 8px; width: 2px; border-radius: 2px;
  background: rgba(140, 180, 255, 0.14); overflow: hidden;
}
.process-fill {
  position: absolute; left: 0; right: 0; top: 0; height: var(--p, 0%);
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  box-shadow: 0 0 18px rgba(74, 163, 255, 0.8);
  transition: height 0.25s linear;
}
.steps { display: grid; gap: 16px; }
.step { padding: 22px 22px 22px 26px; }
.step-node {
  position: absolute; left: -6px; top: 30px; width: 9px; height: 9px; border-radius: 50%;
  background: var(--blue-bright); box-shadow: 0 0 14px rgba(74, 163, 255, 0.9); opacity: 0.85;
}
.step-num {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.18em; color: var(--blue-bright);
}
.step h3 { margin-top: 10px; font-size: 18px; font-weight: 600; }
.step p { margin-top: 7px; font-size: 14.5px; color: var(--ink-soft); }
.notice {
  margin-top: 24px; padding: 16px 18px; border-radius: var(--radius-sm); font-size: 14px;
  color: #e9f2ff; background: rgba(255, 255, 255, 0.045); border: 1px solid var(--line);
  border-left: 2px solid var(--blue-bright);
}

/* ---------- fechamento ---------- */
.close-section { overflow: hidden; }
.bear-watermark {
  position: absolute; top: 50%; left: 50%; width: min(150vw, 900px); height: auto;
  transform: translate3d(-50%, -50%, 0); opacity: 0.06; pointer-events: none;
  filter: drop-shadow(0 0 70px rgba(74, 163, 255, 0.4)) saturate(130%);
  will-change: transform;
}
.close-inner { text-align: center; max-width: 760px; margin: 0 auto; position: relative; }
.close-inner .section-title { margin-left: auto; margin-right: auto; max-width: 24ch; }
.slogan { margin-top: 30px; font-size: clamp(22px, 6vw, 34px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.16; }
.close-cta { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.seal-wrap { margin-top: 38px; display: grid; gap: 16px; text-align: left; }
.seal { padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.seal-badge {
  flex: 0 0 58px; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: conic-gradient(from 210deg, rgba(74,163,255,.95), rgba(29,125,255,.25), rgba(74,163,255,.95));
  box-shadow: 0 0 40px -14px rgba(74, 163, 255, 0.9);
  position: relative;
}
.seal-badge span { position: absolute; inset: 4px; border-radius: 50%; background: #060a12; display: grid; place-items: center; font-size: 18px; }
.seal h3 { font-size: 17px; }
.seal p { margin-top: 8px; font-size: 14.5px; color: var(--ink-soft); }
.care-list { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.care-list li { font-size: 12.5px; color: var(--ink-soft); padding: 6px 11px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); }

/* ---------- footer ---------- */
.footer { padding: 34px 0 46px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center;
  font-size: 12.5px; color: var(--ink-dim); }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; }
.footer-brand img { width: 26px; height: 26px; object-fit: contain; opacity: 0.85; }

/* ---------- CTA fixo mobile ---------- */
.sticky-cta {
  position: fixed; left: 14px; right: 14px; z-index: 55;
  bottom: calc(10px + env(safe-area-inset-bottom));
  pointer-events: none;
  transform: translateY(180%); opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.sticky-cta .btn {
  min-height: 46px; padding: 12px 20px; font-size: 14.5px;
  border-radius: 999px;
  box-shadow: 0 16px 34px -16px rgba(29, 125, 255, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.sticky-cta.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
/* menos intrusivo quando outro CTA principal está visível */
.sticky-cta.is-muted { opacity: 0; transform: translateY(140%); pointer-events: none; }

/* ---------- modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 18px;
  background: rgba(3, 5, 10, 0.72); backdrop-filter: blur(14px);
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal-card {
  width: 100%; max-width: 440px; padding: 26px 22px; max-height: 92vh; overflow-y: auto;
  transform: translateY(22px) scale(0.98); transition: transform 0.45s var(--ease);
}
.modal.is-open .modal-card { transform: none; }
.modal-close {
  position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.07); border: 1px solid var(--line); color: var(--ink); font-size: 17px;
  z-index: 2;
}
.modal h3 { font-size: 22px; }
.modal-desc { margin-top: 8px; font-size: 14px; color: var(--ink-soft); }
.plan-chip {
  display: none; margin-top: 14px; font-size: 12.5px; padding: 8px 12px; border-radius: 10px;
  color: #dceaff; background: rgba(29, 125, 255, 0.14); border: 1px solid rgba(74, 163, 255, 0.3);
}
.plan-chip.is-visible { display: block; }
.field { margin-top: 14px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 7px; }
.field input {
  width: 100%; padding: 15px; font-size: 16px; color: var(--ink);
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); border-radius: 13px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.field input::placeholder { color: rgba(200, 214, 240, 0.35); }
.field input:focus {
  outline: none; border-color: rgba(74, 163, 255, 0.7); background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(29, 125, 255, 0.16);
}
.field.has-error input { border-color: rgba(255, 110, 110, 0.7); }
.field .err { display: none; margin-top: 6px; font-size: 12px; color: #ff9d9d; }
.field.has-error .err { display: block; }
.modal form, .modal-success { position: relative; z-index: 1; }
.modal form .btn { margin-top: 20px; }
.modal-legal { margin-top: 12px; font-size: 11.5px; color: var(--ink-dim); text-align: center; }
.modal-success { display: none; text-align: center; padding: 8px 0 4px; }
.modal-success.is-visible { display: block; }
.modal-success .ok {
  width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center;
  font-size: 24px; background: rgba(29, 125, 255, 0.16); border: 1px solid rgba(74, 163, 255, 0.4);
}
.is-hidden { display: none !important; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .liquid-divider span { transform: none; opacity: 0.4; }
  html { scroll-behavior: auto; }
}

/* ---------- responsivo ---------- */
@media (min-width: 560px) {
  .brand small { display: block; }
  .hero-cta, .close-cta { flex-direction: row; justify-content: center; }
  .highlights { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
@media (min-width: 860px) {
  .section { padding: 112px 0; }
  .hero { padding: 62px 0 92px; }
  .wrap { padding: 0 32px; }
  .proof-grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 34px; }
  .plans { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .plan.featured { transform: translateY(-14px); }
  .has-pointer .plan.featured:hover { transform: translateY(-20px); }
  .seal-wrap { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: none; }
  .cta-long { display: inline; }
  .cta-short { display: none; }
  .header-inner { height: 66px; }
  .header.is-scrolled .header-inner { height: 60px; }
  .brand-bear { width: 34px; height: 34px; }
  .header .btn { padding: 11px 18px; min-height: 42px; font-size: 13.5px; }
  .showcase { max-width: none; padding: 34px 0 24px; perspective: 1200px; }
  .showcase-mobile { width: 27%; max-width: 150px; right: -6px; bottom: -10px; }
  .care-banner { padding: 24px 28px; }

  /* processo horizontal */
  .steps { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .step { padding: 24px 22px; }
  .process-track { left: 8%; right: 8%; top: 0; bottom: auto; width: auto; height: 2px; }
  .process-fill { top: 0; bottom: 0; height: 100%; width: var(--p, 0%); right: auto;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
    transition: width 0.25s linear; }
  .process { padding-top: 26px; }
  .step-node { left: 50%; top: -30px; transform: translateX(-50%); }
}
