/* ============================================================
   SECTIONS — Componentes específicos por seção da página
   ============================================================ */

/* ===========================
   HERO
=========================== */
.hero {
  position: relative; overflow: hidden;
  padding: 140px 0 56px;
  min-height: 100dvh;
  display: flex; flex-direction: column;
  /* Aurora com cores da marca: blue mid + blue primário + violeta sutil */
  background:
    linear-gradient(180deg,transparent 65%,rgba(0,0,0,.5) 100%),
    radial-gradient(circle 700px at 50% 110%,rgba(139,92,246,.18),transparent 60%),
    radial-gradient(circle 800px at 15% 0%,rgba(21,88,214,.28),transparent 60%),
    radial-gradient(circle 900px at 85% 10%,rgba(91,158,247,.32),transparent 65%),
    var(--navy);
}
.hero > .container {
  width: 100%;
  flex: 1;
  display: flex; align-items: center;
}
/* Noise overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}
/* Glows extras desabilitados — aurora já vem do background da .hero */
.hero::after { content: none; }
.hero__glow-right { display: none; }
.hero .container { position: relative; z-index: 2; }
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.hero__badge {
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -.025em; color: #fff;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal; font-weight: 600;
  background: linear-gradient(135deg, #5B9EF7 0%, #A5C8FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: 18px; color: rgba(255,255,255,.65);
  line-height: 1.7; max-width: 480px;
  margin-bottom: 40px;
  text-wrap: pretty;
}
.hero__desc strong { color: rgba(255,255,255,.9); font-weight: 600; }
.hero__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 600; color: #fff;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: gap .2s var(--ease-out), border-color .2s var(--ease-out), color .15s var(--ease-out);
}
.hero__link svg { transition: transform .2s var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .hero__link:hover { gap: 12px; border-bottom-color: rgba(255,255,255,.4); }
  .hero__link:hover svg { transform: translateX(2px); }
}
.hero__proof {
  display: flex; align-items: center; gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero__proof-avatars {
  display: flex;
}
.hero__proof-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--navy);
  background: linear-gradient(135deg, #3B82F6, #1558D6);
  margin-right: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
}
.hero__proof-avatar:nth-child(2) { background: linear-gradient(135deg, #8B5CF6, #5B21B6); }
.hero__proof-avatar:nth-child(3) { background: linear-gradient(135deg, #EC4899, #BE185D); }
.hero__proof-avatar:nth-child(4) { background: linear-gradient(135deg, #10B981, #065F46); }
.hero__proof-text { font-size: 14px; color: rgba(255,255,255,.6); }
.hero__proof-text strong { color: #fff; font-weight: 700; }

/* Hero visual */
.hero__visual {
  position: relative;
}
/* ====== MOCKUP SAAS (browser chrome + sidebar + KPIs + chart + feed) ====== */
.hero__card {
  padding: 0;
  background: rgba(14,18,30,.7);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.05) inset,
    0 40px 90px -20px rgba(0,0,0,.5),
    0 0 0 1px rgba(91,158,247,.06);
  backdrop-filter: blur(20px) saturate(160%);
}

/* Chrome do "browser" */
.mk-chrome{
  display:flex;align-items:center;gap:12px;
  padding:10px 14px;
  background:rgba(0,0,0,.25);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.mk-dots{display:flex;gap:5px}
.mk-dots span{width:9px;height:9px;border-radius:5px;background:rgba(255,255,255,.16)}
.mk-url{
  flex:1;text-align:center;font-size:11px;
  font-family:ui-monospace,'JetBrains Mono',monospace;
  color:rgba(255,255,255,.45);padding:5px 12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);border-radius:6px;
  max-width:240px;margin:0 auto;
  display:flex;align-items:center;justify-content:center;gap:7px;
}
.mk-url::before{
  content:"";width:6px;height:6px;border-radius:50%;
  background:#34d399;box-shadow:0 0 6px rgba(52,211,153,.6);
}

/* Corpo: sidebar + main */
.mk-body{display:grid;grid-template-columns:120px 1fr;min-height:380px}

.mk-side{
  padding:14px 10px;border-right:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.15);
}
.mk-club{
  display:flex;align-items:center;gap:8px;padding:6px 8px;margin-bottom:14px;
  border-radius:7px;background:rgba(255,255,255,.04);
}
.mk-club__mark{
  width:22px;height:22px;border-radius:6px;flex-shrink:0;
  background:linear-gradient(135deg,#7c2d12,#c2410c);
  color:#fff;font-size:10px;font-weight:700;
  display:flex;align-items:center;justify-content:center;
}
.mk-club__name{font-size:12px;font-weight:600;color:#fff;line-height:1.1}
.mk-club__sub{font-size:9.5px;color:rgba(255,255,255,.45);margin-top:1px}

.mk-nav{display:flex;flex-direction:column;gap:1px}
.mk-nav a{
  display:flex;align-items:center;gap:8px;
  font-size:11.5px;color:rgba(255,255,255,.55);
  padding:6px 8px;border-radius:7px;cursor:pointer;
  text-decoration:none;
  transition:background .15s var(--ease-out);
}
.mk-nav a:hover{background:rgba(255,255,255,.04);color:#fff}
.mk-nav a.is-active{background:rgba(91,158,247,.14);color:#fff}
.mk-nav__ic{
  width:13px;height:13px;border-radius:3px;
  background:currentColor;opacity:.45;flex-shrink:0;
}
.mk-nav a.is-active .mk-nav__ic{
  background:#5B9EF7;opacity:1;box-shadow:0 0 6px rgba(91,158,247,.6);
}

/* Main */
.mk-main{padding:18px;display:flex;flex-direction:column;gap:14px}

.mk-head{display:flex;justify-content:space-between;align-items:flex-start}
.mk-head__t{font-size:13px;font-weight:600;color:#fff;letter-spacing:-.01em}
.mk-head__s{font-size:10.5px;color:rgba(255,255,255,.45);margin-top:2px}
.mk-head__btn{
  font-size:10.5px;font-weight:600;color:#fff;border:0;cursor:pointer;
  background:#1558D6;padding:5px 10px;border-radius:6px;
  box-shadow:0 4px 12px rgba(21,88,214,.35);
}

/* KPIs */
.mk-kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.mk-kpi{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  border-radius:7px;padding:10px 11px;
}
.mk-kpi__l{font-size:9.5px;color:rgba(255,255,255,.45);letter-spacing:.04em;text-transform:uppercase;margin-bottom:3px}
.mk-kpi__v{font-size:15px;font-weight:700;color:#fff;letter-spacing:-.015em;line-height:1.05}
.mk-kpi__v .accent{color:#5B9EF7}
.mk-kpi__d{font-size:9.5px;color:#34D399;margin-top:2px;font-weight:600}

/* Chart */
.mk-chart{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
  border-radius:7px;padding:12px;
  position:relative;
}
.mk-chart__h{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px}
.mk-chart__t{font-size:10.5px;font-weight:600;color:rgba(255,255,255,.6)}
.mk-chart__v{font-size:13px;font-weight:700;color:#fff;letter-spacing:-.01em}
.mk-chart__v .delta{font-size:9.5px;font-weight:600;color:#34D399;margin-left:5px}
.mk-chart__svg{width:100%;height:54px;display:block}

/* Feed */
.mk-feed{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
  border-radius:7px;padding:10px 12px;
}
.mk-feed__h{
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:8px;
}
.mk-feed__t{
  font-size:10.5px;font-weight:600;color:rgba(255,255,255,.6);
  display:flex;align-items:center;gap:6px;
}
.mk-feed__t .live{
  width:5px;height:5px;border-radius:50%;background:#34D399;
  box-shadow:0 0 6px rgba(52,211,153,.7);
  animation:mk-pulse 1.6s ease-in-out infinite;
}
@keyframes mk-pulse{0%,100%{opacity:1}50%{opacity:.4}}
.mk-feed__tag{
  font-size:9.5px;color:rgba(255,255,255,.4);
  padding:2px 7px;background:rgba(255,255,255,.04);border-radius:100px;
}

.mk-row{
  display:flex;align-items:center;gap:10px;
  padding:6px 0;border-top:1px solid rgba(255,255,255,.05);
}
.mk-row:first-of-type{border-top:0;padding-top:0}
.mk-row__av{
  width:22px;height:22px;border-radius:50%;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:9px;font-weight:700;
}
.mk-row__main{flex:1;min-width:0;overflow:hidden}
.mk-row__name{font-size:11px;color:#fff;font-weight:500;line-height:1.1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.mk-row__act{font-size:9.5px;color:rgba(255,255,255,.45);margin-top:1px}
.mk-row__amt{
  font-size:11px;font-weight:700;color:#34D399;
  font-variant-numeric:tabular-nums;
}

/* Mobile: esconde sidebar do mockup, mantém o main */
@media (max-width:1100px){
  .mk-body{grid-template-columns:1fr}
  .mk-side{display:none}
}

/* ===========================
   LOGOS BAR (dentro do hero)
=========================== */
.hero__logos {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 2;
  overflow: hidden;
  flex-shrink: 0;
}
.logos__label {
  text-align: center; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.45); letter-spacing: .04em; margin-bottom: 36px;
}
.logos__track-wrap {
  position: relative;
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.logos__track {
  display: flex; align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.logos__track:hover { animation-play-state: paused; }
.logos__item {
  display: flex; align-items: center; justify-content: center;
  padding: 0 44px;
  flex-shrink: 0;
}
.logos__item a {
  display: flex; align-items: center;
}
.logos__item img {
  height: 48px; width: auto;
  max-width: 150px;
  object-fit: contain;
  border-radius: 8px;
  opacity: 0.9;
  transition: transform .25s var(--ease-out), opacity .25s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .logos__item img:hover {
    opacity: 1;
    transform: scale(1.05);
  }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   LOGOS WAVE — 6 colunas, troca vertical staggered
   • Cada coluna sobe a logo trocando da A pra B
   • Stagger 0.3s entre colunas cria o "wave" passando
   • Ciclo 6s, transição 0.6s, ease-out
   • Loop verdadeiramente infinito (track = [A, B, A-cópia])
   ============================================ */
.logos-wave{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:24px 40px;
  max-width:1100px;
  margin:32px auto 0;
  padding:0 16px;
}
.logo-col{
  height:60px;
  width:100%;
  overflow:hidden;
  position:relative;
  contain:strict;
}
.logo-track{
  position:absolute;
  top:0;left:0;
  width:100%;
  display:flex;flex-direction:column;
  will-change:transform;
  backface-visibility:hidden;
  transform:translateZ(0);
  animation:logoWave 6s ease-out infinite;
}
.logo-track img{
  height:60px;width:100%;
  object-fit:contain;
  object-position:center center;
  display:block;
  border-radius:7px;
  opacity:.9;
  transition:opacity .2s;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
}
.logo-col:hover .logo-track img{opacity:1}

/* Keyframes pra 2 logos por coluna (track = [A, B, A-cópia])
   Snap do loop acontece DURANTE descanso na A-cópia = invisível.

   Pra adicionar mais logos por coluna no futuro:
   - 3 logos: 0,15% [0] | 20,30% [-60] | 40,55% [-120] | 65,80% [-180] | 85,100% [-240]
   Regra: cada parada = (80/N)%, deixar 20% pro descanso final da cópia. */
@keyframes logoWave{
  0%, 20%   { transform:translate3d(0,0,0); }
  30%, 70%  { transform:translate3d(0,-60px,0); }
  80%, 100% { transform:translate3d(0,-120px,0); }
}

/* Stagger entre colunas = metade da transição (0.6/2 = 0.3s) */
.logo-col:nth-child(1) .logo-track{animation-delay:0s}
.logo-col:nth-child(2) .logo-track{animation-delay:.30s}
.logo-col:nth-child(3) .logo-track{animation-delay:.60s}
.logo-col:nth-child(4) .logo-track{animation-delay:.90s}
.logo-col:nth-child(5) .logo-track{animation-delay:1.20s}
.logo-col:nth-child(6) .logo-track{animation-delay:1.50s}

/* Mobile: 3 colunas mantendo a onda */
@media(max-width:760px){
  .logos-wave{grid-template-columns:repeat(3,1fr);gap:20px 20px}
}

/* Respeita prefer-reduced-motion */
@media(prefers-reduced-motion:reduce){
  .logo-track{animation:none}
}

/* ===========================
   TYPES SECTION
=========================== */
.types {
  padding: 112px 0;
  background: var(--off-white);
}
.types__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 64px;
}
.type-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  transition:
    transform .25s var(--ease-out),
    border-color .2s var(--ease-out),
    box-shadow .25s var(--ease-out);
}
.type-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
  .type-card:hover::before { transform: scaleX(1); }
}
.type-card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.type-card__icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.type-card__title { font-size: 18px; font-weight: 700; color: #0F1923; margin-bottom: 12px; letter-spacing: -.02em; }
.type-card__desc { font-size: 15px; color: var(--slate); line-height: 1.65; }
.type-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 24px; font-size: 14px; font-weight: 600; color: var(--blue);
  transition: gap .2s var(--ease-out), color .15s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .type-card__link:hover { gap: 10px; color: var(--blue-dark); }
}

/* ===========================
   STATS STRIP
=========================== */
.stats {
  padding: 88px 0;
  background: var(--navy);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  padding: 16px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
}
.stats__item:last-child { border-right: none; }
.stats__main { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.stats__value {
  font-size: clamp(34px, 4vw, 46px); font-weight: 600;
  color: #fff; letter-spacing: -.025em; line-height: 1;
  font-family: var(--font-display);
  display: inline-flex; align-items: baseline; justify-content: center;
}
.stats__value-prefix { color: rgba(91,158,247,.85); font-size: .5em; font-weight: 500; margin-right: 5px; }
.stats__value-suffix { color: rgba(91,158,247,.85); font-size: .5em; font-weight: 500; margin-left: 4px; }
.stats__value-num { font-variant-numeric: tabular-nums; color: #fff; }
.stats__label {
  font-size: 13px; color: rgba(255,255,255,.5); font-weight: 500;
}

/* === MICRO VIZS (minimal) === */
.stats__viz {
  display: flex; align-items: center; justify-content: center;
  height: 22px; opacity: .9;
}

/* 1 — Pontos pulsando (clubes) */
.stats__viz--dots { display: flex; gap: 6px; }
.stats__viz--dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(91,158,247,.3);
}
.stats__viz--dots span.on {
  background: #5B9EF7;
  box-shadow: 0 0 6px rgba(91,158,247,.55);
  animation: dotPulse 2.4s var(--ease-in-out) infinite;
}
.stats__viz--dots span.on:nth-child(2) { animation-delay: .3s; }
.stats__viz--dots span.on:nth-child(4) { animation-delay: .6s; }
.stats__viz--dots span.on:nth-child(6) { animation-delay: .9s; }
@keyframes dotPulse {
  0%,100% { opacity: .85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}

/* 2 — Avatares (assinantes) */
.stats__viz--avatars { display: flex; align-items: center; }
.stats__viz-avatar {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--navy);
  margin-right: -7px;
  background: linear-gradient(135deg, #3B82F6, #1558D6);
}
.stats__viz-avatar:nth-child(2) { background: linear-gradient(135deg, #8B5CF6, #5B21B6); }
.stats__viz-avatar:nth-child(3) { background: linear-gradient(135deg, #EC4899, #BE185D); }
.stats__viz-avatar:nth-child(4) { background: linear-gradient(135deg, #10B981, #065F46); }
.stats__viz-avatar:nth-child(5) { background: linear-gradient(135deg, #F59E0B, #B45309); margin-right: 0; }

/* 3 — Linha (faturamento) */
.stats__viz--chart { width: 88px; height: 22px; }
.stats__viz--chart svg { width: 100%; height: 100%; overflow: visible; }
.stats__viz--chart .line { fill: none; stroke: #5B9EF7; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.stats__viz--chart .end { fill: #5B9EF7; }

/* 4 — Timeline (anos) */
.stats__viz--timeline { width: 88px; }
.stats__viz-timeline-bar {
  height: 3px; width: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, #5B9EF7 100%);
}

/* ===========================
   PRICING
=========================== */
.pricing {
  padding: 112px 0;
  background: #fff;
}
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 64px; align-items: start;
}
.plan-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px solid var(--border);
  position: relative; overflow: hidden;
  background: #fff;
  transition: box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .plan-card:hover { box-shadow: var(--shadow-lg); }
}
.plan-card--featured {
  background: var(--navy);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: none;
}
.plan-card--featured:hover { box-shadow: 0 24px 64px rgba(21,88,214,.35); }
.plan-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.plan-card__name {
  font-size: 13px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 8px;
}
.plan-card--featured .plan-card__name { color: #5B9EF7; }
.plan-card__title { font-size: 22px; font-weight: 700; color: #0F1923; letter-spacing: -.02em; margin-bottom: 12px; }
.plan-card--featured .plan-card__title { color: #fff; }
.plan-card__desc { font-size: 14px; color: var(--slate); line-height: 1.6; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.plan-card--featured .plan-card__desc { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.1); }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #334155;
}
.plan-card--featured .plan-feature { color: rgba(255,255,255,.75); }
.plan-feature__check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-light); flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}
.plan-card--featured .plan-feature__check { background: rgba(52,211,153,.2); }
.plan-feature__check svg { width: 10px; height: 10px; stroke: var(--green); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.plan-card--featured .plan-feature__check svg { stroke: #34D399; }
.plan-feature strong { font-weight: 600; color: #0F1923; }
.plan-card--featured .plan-feature strong { color: #fff; }
.plan-feature__more {
  color: var(--blue); font-size: 13px; font-weight: 600; cursor: pointer;
}
.plan-card--featured .plan-feature__more { color: #5B9EF7; }

/* ===========================
   COMPARE PLANS
=========================== */
.compare {
  margin-top: 56px;
  display: flex; flex-direction: column; align-items: center;
}
.compare-toggle {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 100px;
  background: #fff; border: 2px solid var(--blue);
  color: var(--blue); font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: inherit; line-height: 1;
  transition:
    background-color .2s var(--ease-out),
    color .2s var(--ease-out),
    transform .15s var(--ease-out),
    box-shadow .25s var(--ease-out);
}
.compare-toggle:active { transform: scale(.97); }
@media (hover: hover) and (pointer: fine) {
  .compare-toggle:hover {
    background: var(--blue); color: #fff;
    box-shadow: 0 8px 24px rgba(21,88,214,.25);
  }
}
.compare-toggle svg { transition: transform .35s var(--ease-out); }
.compare-toggle.is-open svg { transform: rotate(180deg); }

.compare-wrap {
  width: 100%; margin-top: 0;
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease-out), margin-top .35s var(--ease-out);
}
.compare-wrap.is-open {
  grid-template-rows: 1fr;
  margin-top: 56px;
}
.compare-inner { overflow: hidden; min-height: 0; }
.compare-scroll {
  overflow-x: auto;
  padding: 32px 16px 24px;
  margin: -32px -16px -24px;
}

.compare-table {
  width: 100%; min-width: 920px;
  background: #fff;
  border-radius: var(--radius-lg);
  border-collapse: separate;
  border-spacing: 0;
  overflow: visible;
}
.compare-table th, .compare-table td {
  padding: 16px 20px; text-align: center; font-size: 14px;
  vertical-align: middle;
  background: #fff;
}

/* === HEADER ROW (plano cards) === */
.compare-table thead th {
  vertical-align: bottom;
  padding: 24px 20px 24px;
  font-size: 15px; font-weight: 800; color: #0F1923;
  letter-spacing: -.01em;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.compare-table th.compare-th-feat {
  text-align: left;
  font-size: 18px; color: #0F1923; font-weight: 800;
  max-width: 320px;
  line-height: 1.25;
  border-top-left-radius: var(--radius-lg);
}
.compare-table th.compare-th-feat span {
  display: block; font-weight: 500; font-size: 14px; color: var(--slate);
  letter-spacing: 0; margin-top: 4px;
}
.compare-table thead th:last-child {
  border-top-right-radius: var(--radius-lg);
}
.compare-th-plan { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.compare-th-plan-tag {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--slate);
  padding: 4px 10px; border-radius: 100px;
  background: rgba(100,116,139,.1);
}
.compare-th-plan-name {
  font-size: 17px; font-weight: 800; letter-spacing: -.02em; color: #0F1923;
  line-height: 1.2;
}
.compare-th-plan-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 100px;
  background: transparent; color: var(--blue);
  border: 1.5px solid var(--blue);
  font-size: 12px; font-weight: 700; line-height: 1;
  text-decoration: none;
  transition:
    background-color .15s var(--ease-out),
    color .15s var(--ease-out),
    transform .15s var(--ease-out);
}
.compare-th-plan-cta:active { transform: scale(.96); }
@media (hover: hover) and (pointer: fine) {
  .compare-th-plan-cta:hover { background: var(--blue); color: #fff; }
}
.compare-th-plan-cta svg { width: 12px; height: 12px; }

/* === FEATURED COLUMN — card que sai da tabela === */
.compare-table th.compare-th-featured,
.compare-table td.compare-cell-featured {
  background: linear-gradient(180deg, rgba(21,88,214,.08) 0%, rgba(21,88,214,.03) 100%);
  position: relative;
}
.compare-table th.compare-th-featured {
  padding-top: 38px;
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  box-shadow: 0 -12px 32px -8px rgba(21,88,214,.18);
}
.compare-table th.compare-th-featured .compare-th-plan-tag {
  background: var(--blue); color: #fff;
}
.compare-table th.compare-th-featured .compare-th-plan-name { color: var(--blue); }
.compare-table th.compare-th-featured .compare-th-plan-cta {
  background: var(--blue); color: #fff; border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(21,88,214,.3);
}
@media (hover: hover) and (pointer: fine) {
  .compare-table th.compare-th-featured .compare-th-plan-cta:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
}
.compare-table th.compare-th-featured::after {
  content: '★ Mais popular';
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); white-space: nowrap;
}
.compare-table td.compare-cell-featured {
  border-left: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  color: #0F1923; font-weight: 600;
}
/* Última linha do featured: arredonda e fecha o card */
.compare-table tbody tr:last-child td.compare-cell-featured {
  border-bottom: 2px solid var(--blue);
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
  box-shadow: 0 16px 32px -8px rgba(21,88,214,.15);
}

/* === SECTION HEADER ROW (com ícone) === */
.compare-section-row td {
  background: #0F1923;
  color: #fff;
  font-weight: 700; font-size: 14px;
  letter-spacing: .02em;
  text-align: left; padding: 18px 20px;
}
.compare-section-row td:first-child { padding-left: 24px; }
.compare-section-row .compare-section-inner {
  display: flex; align-items: center; gap: 12px;
}
.compare-section-row .compare-section-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: #5B9EF7;
  flex-shrink: 0;
}
.compare-section-row .compare-section-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.compare-section-row .compare-section-title { font-size: 14px; font-weight: 700; letter-spacing: 0; text-transform: none; color: #fff; }
.compare-section-row .compare-section-sub { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 500; margin-left: auto; }
/* a célula featured continua mostrando a faixa azul mesmo na linha preta */
.compare-section-row td.compare-cell-featured {
  background: linear-gradient(180deg, rgba(91,158,247,.18) 0%, rgba(91,158,247,.08) 100%);
  border-left: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
}

/* === NOTE ROW === */
.compare-note-row td {
  background: var(--off-white); color: var(--slate);
  font-size: 13px; line-height: 1.5;
  text-align: center; padding: 14px 20px;
  font-style: italic;
}
.compare-note-row strong { color: #0F1923; font-style: normal; font-weight: 700; }
.compare-note-row em { color: var(--blue); font-style: normal; font-weight: 600; }
.compare-note-row td.compare-cell-featured {
  background: linear-gradient(180deg, rgba(21,88,214,.08) 0%, rgba(21,88,214,.05) 100%);
}

/* === ROW HOVER === */
.compare-table tbody tr.compare-row td {
  border-bottom: 1px solid #F1F5F9;
  transition: background-color .15s var(--ease-out);
}
@media (hover: hover) {
  .compare-table tbody tr.compare-row:hover td { background: rgba(15,25,35,.025); }
  .compare-table tbody tr.compare-row:hover td.compare-cell-featured { background: linear-gradient(180deg, rgba(21,88,214,.14) 0%, rgba(21,88,214,.08) 100%); }
}
.compare-table td.compare-cell-feat {
  text-align: left; color: #334155; font-weight: 500;
  max-width: 320px;
}

/* === ICONS LIMPOS === */
.compare-check {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.compare-check svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.compare-cross {
  display: inline-block; color: #CBD5E1;
  font-size: 18px; font-weight: 400;
  line-height: 1;
}
.compare-value { font-family: 'JetBrains Mono', ui-monospace, monospace; font-weight: 600; color: #0F1923; font-size: 13px; }
.compare-optional {
  display: inline-block; padding: 5px 12px; border-radius: 8px;
  background: #FEF3C7; color: #92400E;
  font-size: 11px; font-weight: 700;
  line-height: 1.4; letter-spacing: .02em;
  text-transform: uppercase;
}
.compare-optional small { display: block; font-size: 10px; color: #92400E; opacity: .8; font-weight: 600; margin-top: 2px; letter-spacing: 0; text-transform: none; }
.compare-included { color: var(--green); font-weight: 700; font-size: 13px; }

/* === BOTTOM CTA === */
.compare-bottom {
  margin-top: 32px; padding: 24px;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.compare-bottom-text { font-size: 14px; color: var(--slate); }
.compare-bottom-text strong { color: #0F1923; font-weight: 700; }

.compare-scroll-hint {
  display: none; text-align: center; margin-top: 10px;
  font-size: 12px; color: var(--slate);
}
@media (max-width: 920px) {
  .compare-scroll-hint { display: block; }
}
@media (max-width: 768px) {
  .compare-bottom { flex-direction: column; text-align: center; }
}

/* ===========================
   WHATSAPP FEATURE
=========================== */
.wa-section {
  padding: 112px 0;
  background: #ffffff;
  overflow: hidden;
}
.wa-section__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.wa-section__content {}
.wa-section__title { font-family: var(--font-display); font-size: clamp(24px, 3.2vw, 36px); font-weight: 600; letter-spacing: -.02em; line-height: 1.15; color: #0F1923; margin-bottom: 20px; text-wrap: balance; }
.wa-section__title span { color: #25D366; font-style: normal; }
.wa-section__desc { font-size: 16px; color: var(--slate); line-height: 1.7; margin-bottom: 32px; }
.wa-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.wa-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; border-radius: var(--radius-md);
  background: #fff; border: 1px solid var(--border);
}
.wa-feature__icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: #dcfce7; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-feature__icon svg { width: 18px; height: 18px; stroke: #16a34a; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.wa-feature__text { font-size: 14px; color: #334155; line-height: 1.5; }
.wa-feature__text strong { display: block; font-weight: 600; color: #0F1923; margin-bottom: 2px; }

/* WA visual */
.wa-visual {
  position: relative;
}
.wa-phone {
  background: #111827; border-radius: 22px;
  padding: 20px 16px; max-width: 320px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.wa-phone__header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.wa-phone__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
}
.wa-phone__name { font-size: 14px; font-weight: 600; color: #fff; }
.wa-phone__status { font-size: 11px; color: #25D366; }
.wa-messages { display: flex; flex-direction: column; gap: 8px; }
.wa-msg {
  max-width: 85%; padding: 10px 14px;
  font-size: 13px; line-height: 1.5; color: #fff; border-radius: 14px;
}
.wa-msg--in { background: #1F2937; border-bottom-left-radius: 4px; align-self: flex-start; }
.wa-msg--out { background: #075E54; border-bottom-right-radius: 4px; align-self: flex-end; text-align: right; }
.wa-msg__time { font-size: 10px; opacity: .5; margin-top: 4px; }
.wa-float {
  position: absolute; right: -20px; top: -20px;
  background: var(--navy); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md); padding: 14px 16px;
  font-size: 13px; color: #fff; white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.wa-float strong { color: #34D399; }

/* ===========================
   HOW IT WORKS
=========================== */
.how {
  padding: 112px 0;
  background: var(--off-white);
  position: relative;
}

/* === STEPPER === */
.how__stepper {
  position: relative;
  max-width: 1040px; margin: 64px auto 72px;
  padding: 0 24px;
}
.how__stepper-track,
.how__stepper-track-fill {
  position: absolute; top: 23px;
  left: 48px; right: 48px;
  height: 3px; border-radius: 3px;
}
.how__stepper-track { background: var(--border); }
.how__stepper-track-fill {
  right: auto; width: 0;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-mid) 100%);
  transition: width .55s var(--ease-out);
  box-shadow: 0 0 8px rgba(21,88,214,.3);
}
.how__stepper-nodes {
  display: flex; justify-content: space-between;
  position: relative; z-index: 1;
}
.how__stepper-node {
  background: transparent; border: none; padding: 0; cursor: pointer;
  font-family: inherit;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform .18s var(--ease-out);
}
.how__stepper-node:active { transform: scale(.96); }
.how__stepper-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: var(--slate);
  transition:
    background-color .3s var(--ease-out),
    border-color .3s var(--ease-out),
    color .3s var(--ease-out),
    transform .3s var(--ease-out),
    box-shadow .3s var(--ease-out);
}
.how__stepper-node.is-completed .how__stepper-circle {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.how__stepper-node.is-active .how__stepper-circle {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(21,88,214,.12), 0 8px 20px rgba(21,88,214,.35);
}
.how__stepper-label {
  font-size: 12px; font-weight: 600;
  color: var(--slate); text-align: center;
  max-width: 110px; line-height: 1.3;
  transition: color .25s var(--ease-out);
  white-space: nowrap;
}
.how__stepper-node.is-active .how__stepper-label { color: var(--blue); }
.how__stepper-node.is-completed .how__stepper-label { color: #0F1923; }

/* === PANELS === */
.how__panels {
  position: relative;
  max-width: 1080px; margin: 0 auto;
  min-height: 460px;
}
.how__panel {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px;
  align-items: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity .4s var(--ease-out),
    transform .5s var(--ease-out);
}
.how__panel.is-active {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
  position: relative; inset: auto;
}
.how__panel-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: var(--blue); text-transform: uppercase;
  margin-bottom: 16px;
}
.how__panel-tag::before {
  content: ''; width: 24px; height: 1px; background: var(--blue);
  display: inline-block;
}
.how__panel-title {
  font-size: clamp(20px, 2.6vw, 26px); font-weight: 700;
  letter-spacing: -.02em; color: #0F1923;
  margin-bottom: 16px; text-wrap: balance;
}
.how__panel-desc {
  font-size: 16px; color: var(--slate); line-height: 1.7;
  margin-bottom: 24px;
}
.how__panel-bullets {
  display: flex; flex-direction: column; gap: 10px;
}
.how__bullet {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #334155;
}
.how__bullet-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}
.how__panel-visual {
  background: linear-gradient(160deg, #FFFFFF 0%, #EFF3FA 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(15,25,35,.12);
}
.how__panel-visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(21,88,214,.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(21,88,214,.04) 0%, transparent 40%);
  pointer-events: none;
}
.how__panel-visual--dark { background: var(--navy-2); }
.how__panel-visual--dark::before { display: none; }
.how__panel-visual > * { position: relative; z-index: 1; }

/* === KEYBOARD HINT === */
.how__hint {
  text-align: center; margin-top: 48px;
  font-size: 13px; color: #94A3B8;
}
.how__hint kbd {
  background: var(--off-white); border: 1px solid var(--border);
  padding: 2px 8px; border-radius: 6px; font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; font-weight: 600; color: #475569;
  margin: 0 2px;
}
/* Mock UI inside step visuals */
.mock-ui {
  width: 100%; max-width: 340px;
}
.mock-header {
  background: rgba(255,255,255,.05); border-radius: 10px 10px 0 0;
  padding: 12px 16px; display: flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,.08); border-bottom: none;
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #FF5F56; }
.mock-dot:nth-child(2) { background: #FFBD2E; }
.mock-dot:nth-child(3) { background: #27C93F; }
.mock-body {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 0 0 10px 10px; padding: 20px;
}
.mock-row {
  height: 10px; border-radius: 5px; background: rgba(255,255,255,.1);
  margin-bottom: 8px;
}
.mock-row--short { width: 60%; }
.mock-row--blue { background: rgba(21,88,214,.5); }
.mock-row--green { background: rgba(52,211,153,.4); }
.mock-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.mock-card-sm {
  background: rgba(255,255,255,.06); border-radius: 8px; padding: 12px;
  border: 1px solid rgba(255,255,255,.06);
}
.mock-val { font-size: 16px; font-weight: 700; color: #fff; }
.mock-lbl { font-size: 10px; color: rgba(255,255,255,.3); }

/* Light mock */
.mock-light { background: #fff; border-radius: 12px; box-shadow: var(--shadow-md); overflow: hidden; }
.mock-light-header { background: var(--blue); padding: 14px 16px; }
.mock-light-header-row { height: 8px; border-radius: 4px; background: rgba(255,255,255,.3); margin-bottom: 6px; }
.mock-light-header-row--short { width: 50%; }
.mock-light-body { padding: 16px; }
.mock-light-row { height: 8px; border-radius: 4px; background: #E2E8F0; margin-bottom: 8px; }
.mock-light-row--short { width: 70%; }
.mock-light-btn {
  background: var(--blue); height: 32px; border-radius: 8px;
  margin-top: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; letter-spacing: .04em;
}

/* ===========================
   FEATURES GRID
=========================== */
.features {
  padding: 112px 0;
  background: var(--off-white);
  overflow: hidden;
}
.features-carousel {
  position: relative;
  margin-top: 64px;
}
.features__mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}
.features__grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 24px;
  scroll-behavior: auto;
}
.features__grid::-webkit-scrollbar { display: none; }
.features__grid .feature-card {
  flex: 0 0 320px;
  min-width: 320px;
  scroll-snap-align: start;
}
.features-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(15,25,35,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); cursor: pointer; z-index: 3;
  font-family: inherit;
  transition:
    background-color .2s var(--ease-out),
    color .2s var(--ease-out),
    transform .15s var(--ease-out),
    box-shadow .25s var(--ease-out);
}
.features-arrow:active { transform: translateY(-50%) scale(.92); }
@media (hover: hover) and (pointer: fine) {
  .features-arrow:hover {
    background: var(--blue); color: #fff;
    box-shadow: 0 8px 28px rgba(21,88,214,.35);
  }
}
.features-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.features-arrow--prev { left: -8px; }
.features-arrow--next { right: -8px; }
.features-arrow[disabled] { opacity: .35; cursor: not-allowed; pointer-events: none; }
.feature-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border);
  transition:
    border-color .2s var(--ease-out),
    box-shadow .25s var(--ease-out),
    transform .25s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .feature-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
}
.feature-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card__icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-card__title { font-size: 15px; font-weight: 700; color: #0F1923; margin-bottom: 8px; letter-spacing: -.01em; }
.feature-card__desc { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ===========================
   INTEGRATIONS — Logo cloud
=========================== */
.integrations {
  padding: 112px 0;
  background: var(--off-white);
}
.integrations__header { max-width: 680px; margin: 0 auto 56px; text-align: center; }

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .logo-cloud { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .logo-cloud { grid-template-columns: repeat(2, 1fr); } }

.logo-cell {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1.6 / 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition:
    border-color .25s var(--ease-out),
    box-shadow .25s var(--ease-out),
    transform .25s var(--ease-out);
  cursor: pointer;
}
.logo-cell:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 32px -16px rgba(21,88,214,.32);
  transform: translateY(-2px);
  z-index: 2;
}
.logo-cell img {
  max-width: 82%; max-height: 48px;
  width: auto; height: auto;
  object-fit: contain;
  opacity: .92;
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
}
.logo-cell:hover img { opacity: 1; transform: scale(1.04); }
/* Variante: inverte logo (para logos brancas em WebP/PNG transparente) */
.logo-cell--invert img { filter: invert(1) brightness(.2); }

/* Wordmark fallback (quando a imagem falha em carregar) */
.logo-cell__txt {
  display: inline-flex; align-items: baseline;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 17px;
  letter-spacing: -.025em;
  color: var(--ink, #0F1923);
  opacity: .78; line-height: 1;
  transition: opacity .25s var(--ease-out), color .25s var(--ease-out);
}
.logo-cell__txt::after {
  content: ""; display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); margin-left: 3px; opacity: .85;
}
.logo-cell:hover .logo-cell__txt { opacity: 1; color: var(--blue); }

/* Tooltip (aparece em hover) */
.logo-cell__tip {
  position: absolute;
  bottom: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 12.5px; font-weight: 500; line-height: 1.4;
  white-space: normal; min-width: 200px; max-width: 240px;
  text-align: left;
  opacity: 0; pointer-events: none;
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,.35);
  z-index: 10;
}
.logo-cell__tip::after {
  content: "";
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--navy);
}
.logo-cell__tip strong {
  display: block;
  font-weight: 600; font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: #93B6F5;
  margin-bottom: 4px;
}
.logo-cell:hover .logo-cell__tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials {
  padding: 112px 0;
  background: var(--navy);
}
.testimonials .section-title { color: #fff; }
.testimonials .section-desc { color: rgba(255,255,255,.5); }
.testimonials .section-label { color: #5B9EF7; }
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px;
}
.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 32px;
  transition: background-color .25s var(--ease-out), border-color .25s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .testimonial-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars span { color: #FBBF24; font-size: 14px; }
.testimonial-quote { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #3B82F6, #1558D6);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testimonial-avatar:nth-child(1) {}
.testimonial-name { font-size: 14px; font-weight: 700; color: #fff; }
.testimonial-role { font-size: 13px; color: rgba(255,255,255,.4); }

/* ===========================
   CLIENT MARQUEE (logos rolando, p/ usar dentro de .testimonials)
=========================== */
.client-marquee__label {
  margin-top: 64px;
  text-align: center;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.client-marquee {
  margin-top: 28px;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.client-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: client-marquee 60s linear infinite;
  will-change: transform;
}

.client-marquee:hover .client-marquee__track {
  animation-play-state: paused;
}

@keyframes client-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .client-marquee__track { animation: none; }
}

.client-marquee__card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  min-width: 200px;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  text-decoration: none;
}

.client-marquee__card img {
  max-height: 52px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ===========================
   HOME BLOG — últimos posts
=========================== */
.home-blog {
  padding: 112px 0;
  background: #fff;
}
.home-blog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.home-blog__head > div { max-width: 640px; }
.home-blog__head .section-title { margin-bottom: 12px; }
.home-blog__head .section-desc { margin-bottom: 0; }

.home-blog__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--blue);
  text-decoration: none;
  padding: 12px 18px;
  border: 1px solid rgba(21,88,214,.22);
  border-radius: var(--radius-pill);
  transition:
    background .2s var(--ease-out),
    color .2s var(--ease-out),
    border-color .2s var(--ease-out),
    gap .2s var(--ease-out);
}
.home-blog__all svg { width: 16px; height: 16px; }
.home-blog__all:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  gap: 12px;
}

@media (max-width: 760px) {
  .home-blog__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
}

.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) { .home-blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .home-blog__grid { grid-template-columns: 1fr; } }

.home-blog-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition:
    border-color .22s var(--ease-out),
    box-shadow .22s var(--ease-out),
    transform .22s var(--ease-out);
}
.home-blog-card:hover {
  border-color: rgba(21,88,214,.28);
  box-shadow: 0 16px 40px -18px rgba(8,14,26,.16);
  transform: translateY(-3px);
}

.home-blog-card__kicker {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(15,25,35,.55);
}
.home-blog-card__cat {
  color: var(--blue);
  font-weight: 700;
}

.home-blog-card__title {
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: -.012em;
  font-weight: 600;
  color: #0F1923;
  margin: 0;
}

.home-blog-card__excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  transition: gap .2s var(--ease-out);
}
.home-blog-card__cta svg {
  width: 16px; height: 16px;
  transition: transform .2s var(--ease-out);
}
.home-blog-card:hover .home-blog-card__cta { gap: 12px; }
.home-blog-card:hover .home-blog-card__cta svg { transform: translateX(2px); }

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  padding: 120px 0;
  background: #fff;
}
.cta-box {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at left top, rgba(21,88,214,.25) 0%, transparent 50%),
    radial-gradient(ellipse at right bottom, rgba(45,114,245,.15) 0%, transparent 50%);
  pointer-events: none;
}
.cta-box__head {
  position: relative; z-index: 1;
  text-align: center; max-width: 720px; margin: 0 auto 56px;
}
.cta-box__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #5B9EF7; margin-bottom: 18px;
}
.cta-box__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600; color: #fff;
  line-height: 1.1; letter-spacing: -.025em;
  text-wrap: balance;
}
.cta-box__title em { font-style: normal; color: #5B9EF7; font-weight: 600; }
.cta-box__steps {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 16px;
  align-items: stretch; margin-bottom: 48px;
}
.cta-box__step {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.cta-box__step--final {
  background: linear-gradient(180deg, rgba(21,88,214,.15) 0%, rgba(91,158,247,.06) 100%);
  border-color: rgba(91,158,247,.3);
}
.cta-box__step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(91,158,247,.15); color: #5B9EF7;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; margin-bottom: 6px;
}
.cta-box__step--final .cta-box__step-num {
  background: var(--blue); color: #fff;
  box-shadow: 0 0 0 4px rgba(21,88,214,.2);
}
.cta-box__step h3 {
  font-size: 17px; font-weight: 700; color: #fff;
  letter-spacing: -.015em;
}
.cta-box__step p {
  font-size: 13px; color: rgba(255,255,255,.55);
  line-height: 1.5; flex: 1;
}
.cta-box__step-meta {
  font-size: 11px; color: #5B9EF7; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin-top: 4px; align-self: flex-start;
  padding: 4px 10px; background: rgba(91,158,247,.1);
  border-radius: 100px;
}
.cta-box__arrow {
  display: flex; align-items: center; justify-content: center;
  color: rgba(91,158,247,.35);
}
.cta-box__arrow svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cta-box__actions {
  position: relative; z-index: 1;
  text-align: center;
}

/* ===========================
   SEGMENTS
=========================== */
.segments {
  padding: 112px 0;
  background: var(--off-white);
}
/* Tabs container — pill desktop, scroll horizontal no mobile (padrão IG/Twitter) */
.segments__tabs {
  display: flex; gap: 6px; justify-content: center;
  padding: 6px; background: #fff; border: 1px solid var(--border);
  border-radius: 100px; max-width: max-content; margin: 0 auto 56px;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(15,25,35,.04);
}
.segments__tab {
  padding: 10px 22px; font-size: 14px; font-weight: 600; color: var(--slate);
  cursor: pointer; border-radius: 100px; border: none; background: transparent;
  font-family: inherit; line-height: 1; white-space: nowrap;
  transition:
    background-color .2s var(--ease-out),
    color .2s var(--ease-out),
    box-shadow .2s var(--ease-out);
}
.segments__tab:active { transform: scale(.97); }
.segments__tab.active {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 14px rgba(21,88,214,.25);
}
@media (hover: hover) and (pointer: fine) {
  .segments__tab:not(.active):hover { background: rgba(0,0,0,.04); color: #0F1923; }
}

/* ===== Mobile (≤768px): scroll horizontal + snap + fade mask ===== */
@media (max-width: 768px) {
  .segments__tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    max-width: 100%;
    margin: 0 -24px 40px; /* sangra os 24px do .container pra encostar nas bordas */
    padding: 6px 24px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    /* Fade nas bordas sinalizando "tem mais tabs pros lados" */
    mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
  }
  .segments__tabs::-webkit-scrollbar { display: none; }
  .segments__tab {
    flex-shrink: 0;
    scroll-snap-align: center;
    background: #fff;
    border: 1px solid var(--border);
    padding: 10px 18px;
    font-size: 13.5px;
  }
  .segments__tab.active {
    border-color: var(--blue);
  }
}
.segments__pane { display: none; }
.segments__pane.active {
  display: grid;
  grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center;
  max-width: 1080px; margin: 0 auto;
  animation: segFade .35s var(--ease-out);
}
@keyframes segFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.segments__icon-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: var(--blue-light); color: var(--blue);
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  margin-bottom: 20px; border: 1px solid rgba(21,88,214,.15);
}
.segments__icon-tag svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.segments__text-title {
  font-size: clamp(28px, 3.5vw, 38px); font-weight: 800;
  letter-spacing: -.02em; line-height: 1.15; color: #0F1923;
  margin-bottom: 16px; text-wrap: balance;
}
.segments__text-title span { color: var(--blue); }
.segments__text-desc {
  font-size: 16px; color: var(--slate); line-height: 1.65;
  margin-bottom: 28px; text-wrap: pretty;
}
.segments__list { display: flex; flex-direction: column; gap: 12px; }
.segments__list-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: #334155;
}
.segments__list-item-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-light); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.segments__list-item-check svg { width: 11px; height: 11px; stroke: var(--green); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* === Visual mockup base === */
.seg-visual {
  background: linear-gradient(160deg, var(--off-white) 0%, #EFF3FA 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 36px; position: relative; overflow: hidden;
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 60px -20px rgba(15,25,35,.12);
}
.seg-visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(21,88,214,.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(21,88,214,.04) 0%, transparent 40%);
  pointer-events: none;
}
.seg-mock {
  position: relative; z-index: 1;
  width: 100%; max-width: 340px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(15,25,35,.08), 0 0 0 1px rgba(15,25,35,.04);
  overflow: hidden;
}
.seg-mock__header {
  padding: 14px 18px; background: var(--blue); color: #fff;
  display: flex; justify-content: space-between; align-items: center;
}
.seg-mock__header-title { font-size: 13px; font-weight: 700; letter-spacing: -.01em; }
.seg-mock__header-pill {
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 100px;
  background: rgba(255,255,255,.2);
}
.seg-mock__body { padding: 18px 20px; }

/* ===========================
   SHARED list component (vinhos, livros, comida, hortifruti)
=========================== */
.seg-list { display: flex; flex-direction: column; }
.seg-list-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.seg-list-item:first-child { padding-top: 4px; }
.seg-list-item:last-child { border-bottom: none; padding-bottom: 4px; }

.seg-list-icon {
  width: 30px; height: 30px; border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.06);
}
.seg-list-cover {
  width: 22px; height: 30px;
  border-radius: 2px 4px 4px 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,.18), inset -2px 0 0 rgba(0,0,0,.12);
  flex-shrink: 0;
}
.seg-list-day {
  width: 34px; flex-shrink: 0; text-align: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 0; border-radius: 6px;
  letter-spacing: .04em;
}

.seg-list-info { flex: 1; min-width: 0; }
.seg-list-info strong {
  display: block;
  font-size: 12.5px; font-weight: 700;
  color: #0F1923; letter-spacing: -.005em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 1px;
}
.seg-list-info span {
  display: block;
  font-size: 11px; color: var(--slate);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.seg-list-meta {
  font-size: 9.5px; font-weight: 700;
  color: var(--slate);
  letter-spacing: .06em; text-transform: uppercase;
  flex-shrink: 0;
}
.seg-list-qty {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.seg-list-badge {
  font-size: 9px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 100px;
  background: #F1F5F9; color: var(--slate);
  flex-shrink: 0;
}
.seg-list-badge--active {
  background: var(--blue-light); color: var(--blue);
}
.seg-list-badge--done {
  background: var(--green-light); color: var(--green);
}

/* Mock footer — usado em vinho/livros/comida/hortifruti */
.seg-mock__footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; margin-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--slate);
}
.seg-mock__footer-strong {
  font-size: 12px; font-weight: 700; color: #0F1923;
}
.seg-mock__footer--accent {
  border-top: 2px solid #0F1923;
  padding-top: 12px;
}
.seg-mock__footer--accent span:first-child {
  font-size: 13px; font-weight: 700; color: #0F1923;
}
.seg-mock__footer-value {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 14px; font-weight: 700; color: var(--blue);
  letter-spacing: -.01em;
}

/* Wine mock (legado — mantido por retrocompat, mas substituído por .seg-list) */
.seg-bottle-row { display: flex; gap: 14px; justify-content: center; margin-bottom: 18px; padding: 8px 0; }
.seg-bottle {
  width: 38px; height: 90px; position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.seg-bottle__neck {
  width: 10px; height: 22px; background: #1f2937; border-radius: 3px 3px 0 0;
}
.seg-bottle__body {
  width: 28px; height: 68px; border-radius: 6px 6px 12px 12px;
  margin-top: -2px; position: relative;
}
.seg-bottle__body::after {
  content: ''; position: absolute; left: 4px; right: 4px; top: 20px; bottom: 8px;
  background: rgba(255,255,255,.85); border-radius: 2px;
}
.seg-bottle--tinto .seg-bottle__body { background: #5C1A1B; }
.seg-bottle--branco .seg-bottle__body { background: #D4C896; }
.seg-bottle--rose .seg-bottle__body { background: #E8A5A8; }
.seg-bottle__label { font-size: 9px; font-weight: 700; color: var(--slate); margin-top: 4px; text-transform: uppercase; letter-spacing: .04em; text-align: center; }

/* Book mock */
.seg-books { display: flex; gap: 10px; justify-content: center; padding: 6px 0 18px; }
.seg-book {
  width: 52px; height: 76px; border-radius: 3px 6px 6px 3px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15), inset -2px 0 0 rgba(0,0,0,.1);
  display: flex; align-items: flex-end; padding: 8px 6px;
  font-size: 8px; font-weight: 700; color: rgba(255,255,255,.9);
  letter-spacing: .02em; line-height: 1.1;
  transform-origin: bottom center;
}
.seg-book:nth-child(1) { background: linear-gradient(135deg, #1F4068, #162B47); transform: rotate(-3deg); }
.seg-book:nth-child(2) { background: linear-gradient(135deg, #BC4639, #8C2B23); transform: translateY(-2px); }
.seg-book:nth-child(3) { background: linear-gradient(135deg, #C9A961, #8C7438); transform: rotate(3deg); }

/* Meal plan */
.seg-meal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 14px; }
.seg-meal-cell {
  aspect-ratio: 1; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}
.seg-meal-cell--head { background: transparent; color: var(--slate); font-size: 9px; text-transform: uppercase; letter-spacing: .04em; aspect-ratio: auto; padding: 4px 0; }
.seg-meal-cell--filled { background: linear-gradient(135deg, var(--blue-light), #DDE6FA); color: var(--blue); }
.seg-meal-cell--empty { background: var(--off-white); color: #CBD5E1; border: 1px dashed var(--border); }

/* Basket (hortifruti) */
.seg-basket-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; font-size: 12px; border-bottom: 1px solid var(--border);
}
.seg-basket-row:last-of-type { border-bottom: none; }
.seg-basket-name { display: flex; align-items: center; gap: 8px; color: #334155; font-weight: 500; }
.seg-basket-dot {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
.seg-basket-qty { font-family: 'JetBrains Mono', ui-monospace, monospace; font-weight: 700; color: var(--blue); font-size: 12px; }
.seg-basket-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px; padding-top: 12px; border-top: 2px solid #0F1923;
  font-size: 13px; font-weight: 700;
}
.seg-basket-total-value { font-family: 'JetBrains Mono', ui-monospace, monospace; color: var(--blue); }

/* Café */
.seg-coffee-origin {
  display: flex; align-items: center; gap: 12px; padding: 8px 0 14px;
}
.seg-coffee-bean {
  width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #6B4423 0%, #3E2515 60%, #1F120A 100%);
  position: relative; flex-shrink: 0;
  box-shadow: inset -3px -3px 6px rgba(0,0,0,.3);
}
.seg-coffee-bean::after {
  content: ''; position: absolute; top: 6px; bottom: 6px; left: 50%;
  width: 1px; transform: translateX(-50%);
  background: rgba(0,0,0,.5); border-radius: 1px;
}
.seg-coffee-info { flex: 1; }
.seg-coffee-variety { font-size: 13px; font-weight: 700; color: #0F1923; letter-spacing: -.01em; }
.seg-coffee-region { font-size: 11px; color: var(--slate); margin-top: 2px; }
.seg-coffee-meta {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.seg-coffee-row { display: flex; justify-content: space-between; font-size: 12px; }
.seg-coffee-row-label { color: var(--slate); }
.seg-coffee-row-value { color: #0F1923; font-weight: 600; }
.seg-coffee-notes { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.seg-coffee-note {
  font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 100px;
  background: var(--blue-light); color: var(--blue);
  letter-spacing: .02em;
}
.seg-coffee-roast { display: flex; align-items: center; gap: 6px; }
.seg-coffee-roast-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.seg-coffee-roast-dot.on { background: var(--blue); }

/* ===========================
   Infantil — perfil + timeline + items
=========================== */
.seg-kid-header {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.seg-kid-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #FFB6C1 0%, #FFA07A 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: #fff;
  box-shadow: 0 2px 6px rgba(255,118,136,.3);
  flex-shrink: 0;
}
.seg-kid-header-info { flex: 1; min-width: 0; }
.seg-kid-name {
  font-size: 13px; font-weight: 700;
  color: #0F1923; letter-spacing: -.005em;
}
.seg-kid-age {
  font-size: 11px; color: var(--slate);
  margin-top: 2px;
}
.seg-kid-phase-pill {
  font-size: 9.5px; font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid rgba(21,88,214,.18);
  padding: 4px 9px; border-radius: 100px;
  letter-spacing: .04em; text-transform: uppercase;
  flex-shrink: 0;
}

/* Timeline de fases — substituiu o seg-kid-stage */
.seg-kid-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 4px;
}
.seg-kid-timeline::before {
  content: ""; position: absolute;
  top: 6px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.seg-kid-phase {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  z-index: 1;
}
.seg-kid-phase-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  transition: all .2s var(--ease-out);
}
.seg-kid-phase--done .seg-kid-phase-dot {
  background: var(--blue);
  border-color: var(--blue);
}
.seg-kid-phase--active .seg-kid-phase-dot {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-light), 0 0 0 5px var(--blue);
}
.seg-kid-phase-label {
  font-size: 9px; font-weight: 600;
  color: var(--slate);
  text-align: center;
  letter-spacing: .03em;
  line-height: 1.15;
}
.seg-kid-phase--active .seg-kid-phase-label {
  color: var(--blue);
  font-weight: 700;
}
.seg-kid-phase--done .seg-kid-phase-label {
  color: var(--slate);
}

/* Items grid */
.seg-kid-items {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.seg-kid-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 9px 10px;
  display: flex; align-items: center; gap: 9px;
}
.seg-kid-item-emoji {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.seg-kid-item-text {
  font-size: 11px; color: var(--slate);
  line-height: 1.2;
}
.seg-kid-item-text strong {
  display: block;
  font-size: 11.5px; font-weight: 700;
  color: #0F1923; margin-bottom: 1px;
  letter-spacing: -.005em;
}

/* ===========================
   Fitness — ring + stats row + streak
=========================== */
.seg-fit-hero {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.seg-fit-ring {
  position: relative;
  width: 64px; height: 64px;
  flex-shrink: 0;
}
.seg-fit-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.seg-fit-ring-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 5;
}
.seg-fit-ring-fg {
  fill: none;
  stroke: var(--blue);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 175.93;     /* 2π × 28 */
  stroke-dashoffset: 35;        /* ~80% completo (visualmente bonito) */
  filter: drop-shadow(0 0 4px rgba(21,88,214,.3));
}
.seg-fit-ring-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  line-height: 1;
}
.seg-fit-ring-text strong {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 18px; font-weight: 700;
  color: #0F1923; letter-spacing: -.02em;
}
.seg-fit-ring-text span {
  font-size: 8.5px; font-weight: 600;
  color: var(--slate);
  letter-spacing: .04em; text-transform: uppercase;
  margin-top: 2px;
}
.seg-fit-hero-info { flex: 1; min-width: 0; }
.seg-fit-hero-label {
  font-size: 11px; font-weight: 600;
  color: var(--slate);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 4px;
}
.seg-fit-hero-trend {
  font-size: 14px; font-weight: 700;
  color: var(--green);
  letter-spacing: -.01em;
}
.seg-fit-hero-trend span {
  font-size: 11px; font-weight: 500;
  color: var(--slate); margin-left: 4px;
}

.seg-fit-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.seg-fit-stat-mini {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8px 4px;
  background: var(--off-white);
  border-radius: 8px;
}
.seg-fit-stat-mini-value {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px; font-weight: 700;
  color: #0F1923; letter-spacing: -.01em;
}
.seg-fit-stat-mini-label {
  font-size: 9.5px; font-weight: 600;
  color: var(--slate);
  letter-spacing: .04em; text-transform: uppercase;
  margin-top: 3px;
}

.seg-fit-streak {
  display: flex; gap: 4px; margin-top: 12px; justify-content: space-between;
}
.seg-fit-streak-day {
  flex: 1; aspect-ratio: 1;
  max-width: 26px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
}
.seg-fit-streak-day--done { background: var(--blue); color: #fff; }
.seg-fit-streak-day--today {
  background: var(--blue-light); color: var(--blue);
  box-shadow: inset 0 0 0 2px var(--blue);
}
.seg-fit-streak-day--future {
  background: var(--off-white); color: #CBD5E1;
  border: 1px dashed var(--border);
}

/* ===========================
   FAQ
=========================== */
.faq {
  padding: 112px 0;
  background: var(--off-white);
}
.faq__container { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.faq__list { display: flex; flex-direction: column; gap: 10px; margin-top: 56px; }
.faq__item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.faq__item:hover { box-shadow: var(--shadow-sm); }
.faq__item[open] {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(21,88,214,.08);
}
.faq__item summary {
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  list-style: none; color: #0F1923; letter-spacing: -.01em;
  transition: color .15s var(--ease-out);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ''; flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue-light);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231558D6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .3s var(--ease-out), background-color .2s var(--ease-out);
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--blue);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
}
.faq__answer {
  padding: 0 24px 24px; font-size: 15px; color: var(--slate);
  line-height: 1.7; max-width: 680px;
}
.faq__answer strong { color: #0F1923; font-weight: 600; }
.faq__more {
  margin-top: 48px; text-align: center;
  font-size: 15px; color: var(--slate);
}
.faq__more a { color: var(--blue); font-weight: 600; }
.faq__more a:hover { text-decoration: underline; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .hero { min-height: auto; padding: 140px 0 80px; }
  /* hero centralizada no mobile */
  .hero__text { text-align: center; }
  .hero__badge { display: flex; justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .types__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .plan-card--featured { transform: none; }
  .wa-section__grid { grid-template-columns: 1fr; gap: 48px; }
  .how__panel { grid-template-columns: 1fr; gap: 32px; }
  .how__panel-visual { padding: 28px; min-height: 320px; order: -1; }
  .how__panels { min-height: auto; }
  .how__stepper { margin: 56px auto 56px; max-width: 720px; padding: 0 16px; }
  .how__stepper-track, .how__stepper-track-fill { left: 28px; right: 28px; }
  .how__stepper-label { font-size: 11px; max-width: 70px; line-height: 1.15; white-space: normal; }
  .how__stepper-circle { width: 40px; height: 40px; font-size: 14px; }
  .how__stepper-track, .how__stepper-track-fill { top: 19px; }
  .features__grid .feature-card { flex: 0 0 280px; min-width: 280px; }
  .integrations__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 24px 20px; }
  .stats__item:nth-child(2n) { border-right: none; }
  .stats__item:nth-child(2n+1) { border-right: 1px solid rgba(255,255,255,.08); }
  .stats__item:nth-last-child(-n+2) { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .segments__pane.active { grid-template-columns: 1fr; gap: 36px; }
  .seg-visual { padding: 28px; min-height: 320px; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .types__grid { grid-template-columns: 1fr; }
  .features__grid .feature-card { flex: 0 0 260px; min-width: 260px; }
  .features-arrow { width: 40px; height: 40px; }
  .features-arrow--prev { left: 4px; }
  .features-arrow--next { right: 4px; }
  .integrations__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item:nth-child(n) { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stats__item:last-child { border-bottom: none; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .cta-box__steps { grid-template-columns: 1fr; }
  .cta-box__arrow { transform: rotate(90deg); justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .logos__strip { gap: 28px; }
  /* (tabs mobile já tratados acima na própria seção .segments__tabs com scroll horizontal) */
  .faq__item summary { padding: 18px 20px; font-size: 15px; }
  .faq__answer { padding: 0 20px 20px; font-size: 14px; }
  .how__stepper-label { display: none; }
  .how__stepper-track, .how__stepper-track-fill { left: 28px; right: 28px; }
  .how__stepper-circle { width: 44px; height: 44px; font-size: 14px; }
  .how__stepper-track, .how__stepper-track-fill { top: 21px; }
}

