/*
 * ═══════════════════════════════════════════════════════════
 *  MR. WEB — global.css
 *  Design System completo: tokens, componentes, layout
 *  Para editar o visual do site inteiro: edite este arquivo
 * ═══════════════════════════════════════════════════════════
 */



/* ══════════════════════════════════════════════════
   MR. WEB — DESIGN SYSTEM PREMIUM 2025
   Inspirado: DGFlow dark + Layout editorial MD
   ══════════════════════════════════════════════════ */

/* ── FONTES ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Sora:wght@600;700;800;900&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ══════════════════════════
   TOKENS — DARK (DEFAULT)
   ══════════════════════════ */
:root {
  /* Brand */
  --purple:       #7C3AED;
  --purple-mid:   #9B5CF6;
  --purple-dark:  #5B21B6;
  --teal:         #00E6A8;   /* verde-teal exato das imagens */
  --teal-2:       #00AEEF;   /* azul-teal das imagens */
  --teal-dark:    #00B584;
  --green-wa:     #25D366;
  --green-wa-dk:  #1AAD54;

  /* Gradientes de título — DNA das imagens */
  --grad-hero:    linear-gradient(135deg, #00E6A8 0%, #00AEEF 60%, #9B5CF6 100%);
  --grad-title:   linear-gradient(90deg,  #00E6A8 0%, #00AEEF 100%);
  --grad-title-2: linear-gradient(135deg, #9B5CF6 0%, #00AEEF 50%, #00E6A8 100%);
  --grad-purple:  linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
  --grad-teal:    linear-gradient(135deg, #00E6A8 0%, #00AEEF 100%);
  --grad-wa:      linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  --grad-border:  linear-gradient(135deg, rgba(0,230,168,.4), rgba(0,174,239,.3));

  /* Superfícies dark */
  --bg-page:    #0A0A0F;
  --bg-card:    #0F0F1C;
  --bg-card-2:  #141428;
  --bg-input:   #080814;
  --border:     rgba(255,255,255,.07);
  --border-glow:rgba(0,230,168,.35);

  /* Texto */
  --text-primary:  #F2F0FF;
  --text-secondary:#A09CC0;
  --text-muted:    #5A577A;

  /* Nav */
  --nav-bg:     rgba(10,10,15,.88);
  --nav-border: rgba(255,255,255,.05);

  /* Sombras */
  --shadow-glow: 0 0 40px rgba(0,230,168,.2), 0 0 80px rgba(0,174,239,.1);
  --shadow-card: 0 4px 32px rgba(0,0,0,.6);
  --shadow-btn:  0 4px 20px rgba(0,230,168,.3);

  /* Radii */
  --r-sm: 6px; --r-md: 12px; --r-lg: 18px; --r-xl: 28px; --r-full: 999px;

  /* Danger */
  --danger: #F87171;
}

/* ── LIGHT TOGGLE ── */
[data-theme="light"] {
  --bg-page:       #F5F4FF;
  --bg-card:       #FFFFFF;
  --bg-card-2:     #F0EFFE;
  --bg-input:      #FFFFFF;
  --border:        rgba(0,0,0,.08);
  --border-glow:   rgba(0,174,239,.4);
  --text-primary:  #12102A;
  --text-secondary:#3D3860;
  --text-muted:    #8B88A8;
  --nav-bg:        rgba(255,255,255,.92);
  --nav-border:    rgba(0,0,0,.06);
  --shadow-glow:   0 4px 32px rgba(0,174,239,.15);
  --shadow-card:   0 4px 20px rgba(0,0,0,.06);

  /* gradientes preservados no light mode */
  --grad-teal:   linear-gradient(135deg, #00E6A8 0%, #00AEEF 100%);
  --grad-purple: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
  --grad-title:  linear-gradient(90deg, #00C9A7 0%, #0087C9 100%);
  --grad-wa:     linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  --green-wa:    #25D366;
  --green-wa-dk: #1AAD54;
  --shadow-glow: 0 4px 24px rgba(0,174,239,.15);
  --shadow-btn:  0 4px 16px rgba(0,174,239,.2);
}

/* ══ BASE ══ */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-page);
  color: var(--text-secondary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ══ TIPOGRAFIA ══ */
h1,h2,h3,h4 { font-family: 'Sora',sans-serif; color: var(--text-primary); line-height: 1.18; letter-spacing: -.5px; }
h1 { font-size: clamp(2.2rem,5vw,3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem,3.5vw,2.6rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { color: var(--text-secondary); }
a  { text-decoration: none; }

/* Gradient text — elemento DNA das imagens */
.tg { background: var(--grad-title); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.tg2 { background: var(--grad-title-2); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.tg-hero { background: var(--grad-hero); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* ══ LAYOUT ══ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* ══ GLOW CARD — estilo DGFlow ══ */
.gcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  overflow: hidden;
}
.gcard::after {
  content: "";
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,230,168,.04) 0%, rgba(0,174,239,.04) 100%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.gcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); border-color: var(--border-glow); }
.gcard:hover::after { opacity: 1; }

/* ══ BADGE ══ */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(0,230,168,.25);
  background: rgba(0,230,168,.07);
  color: var(--teal); font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: var(--r-full); letter-spacing: .5px;
  margin-bottom: 20px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pdot 2s infinite; }
@keyframes pdot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }

.badge-new {
  background: var(--grad-teal); color: #031A14;
  font-size: 9px; font-weight: 800; padding: 2px 7px;
  border-radius: 4px; vertical-align: middle; margin-left: 5px; letter-spacing: .5px;
}

/* ══ BOTÕES ══ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-purple); color: #fff;
  padding: 14px 28px; border-radius: var(--r-md);
  font-size: 15px; font-weight: 700; font-family: 'Inter',sans-serif;
  border: none; cursor: pointer; text-decoration: none;
  transition: filter .2s, transform .1s;
}
.btn-primary:hover { filter: brightness(1.15); color: #fff; }
.btn-primary:active { transform: scale(.98); }

/* CTA teal com ícone → exato das imagens */
.btn-teal {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad-teal); color: #031A14;
  padding: 15px 32px; border-radius: var(--r-full);
  font-size: 15px; font-weight: 800; font-family: 'Inter',sans-serif;
  border: none; cursor: pointer; text-decoration: none;
  transition: filter .2s, transform .1s, box-shadow .2s;
  box-shadow: var(--shadow-btn);
}
.btn-teal:hover { filter: brightness(1.1); box-shadow: 0 6px 32px rgba(0,230,168,.45); transform: translateY(-1px); }
.btn-teal .btn-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,0,0,.2); display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
}

/* WhatsApp — verde correto */
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-wa); color: #fff;
  padding: 14px 28px; border-radius: var(--r-full);
  font-size: 15px; font-weight: 700; font-family: 'Inter',sans-serif;
  border: none; cursor: pointer; text-decoration: none;
  transition: background .2s, transform .1s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-wa:hover { background: var(--green-wa-dk); color: #fff; box-shadow: 0 6px 28px rgba(37,211,102,.45); }

/* Ghost com borda teal — estilo das imagens */
.btn-ghost-teal {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--teal);
  padding: 13px 26px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 700; font-family: 'Inter',sans-serif;
  border: 1.5px solid var(--teal); cursor: pointer; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-ghost-teal:hover { background: rgba(0,230,168,.1); }

/* ══ NAVBAR ══ */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: var(--nav-bg); border-bottom: 1px solid var(--nav-border);
  padding: 0 24px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.navbar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.navbar-logo img { height: 44px; width: auto; display: block; }
.navbar-links { display: flex; align-items: center; gap: 2px; }
.navbar-links a {
  font-size: 13.5px; font-weight: 600; color: var(--text-secondary);
  padding: 6px 13px; border-radius: var(--r-sm);
  transition: color .2s, background .2s; text-decoration: none;
}
.navbar-links a:hover { color: var(--text-primary); background: rgba(255,255,255,.05); }
.navbar-right { display: flex; align-items: center; gap: 10px; }
.navbar-cta {
  background: var(--grad-teal); color: #031A14 !important;
  font-size: 13px; font-weight: 800; padding: 8px 20px;
  border-radius: var(--r-full); white-space: nowrap;
  text-decoration: none; transition: filter .2s;
}
.navbar-cta:hover { filter: brightness(1.1); }
.theme-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: rgba(255,255,255,.04);
  color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  transition: all .2s;
}
.theme-btn:hover { border-color: var(--border-glow); color: var(--teal); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none; flex-direction: column; padding: 16px 24px 24px;
  border-top: 1px solid var(--border); background: var(--nav-bg);
}
.mobile-menu a {
  font-size: 15px; font-weight: 600; color: var(--text-secondary);
  padding: 12px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ══ HERO PREMIUM — layout das imagens ══ */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  background: var(--bg-page);
  display: flex; align-items: center;
}
/* Glow ambiental */
.hero-glow-1 {
  position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse,
    rgba(0,174,239,.12) 0%, rgba(0,230,168,.08) 35%, transparent 65%);
}
.hero-glow-2 {
  position: absolute; bottom: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(124,58,237,.15) 0%, transparent 65%);
}
.hero-glow-3 {
  position: absolute; bottom: 0; left: -50px;
  width: 350px; height: 350px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(0,230,168,.08) 0%, transparent 65%);
}

.hero-inner {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 100vh;
}

/* Lado esquerdo — textos */
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 56px 80px 0;
}

/* Tags de serviço (como as pill buttons das imagens) */
.hero-pills {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text-secondary); font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: var(--r-full);
  transition: border-color .2s, color .2s;
}
.hero-pill:hover { border-color: var(--border-glow); color: var(--teal); }
.hero-pill-icon { font-size: 13px; }

/* Título grande — palavra destaque em gradiente */
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

/* Subtítulo */
.hero-sub-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 480px;
}

/* Barra vertical decorativa — exata das imagens */
.hero-bar-wrap {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 40px;
}
.hero-v-bar {
  width: 3px; min-height: 48px; border-radius: 2px;
  background: var(--grad-teal); flex-shrink: 0; margin-top: 4px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* Stats row */
.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid var(--border); padding-top: 32px;
}
.hero-stat { padding: 0 28px; border-right: 1px solid var(--border); }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Sora', sans-serif; font-size: 2.2rem; font-weight: 900;
  background: var(--grad-title); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  display: block; line-height: 1;
}
.hero-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* Lado direito — imagem cinematográfica */
.hero-right {
  position: relative; overflow: hidden;
}
.hero-img-wrap {
  position: absolute; inset: 0;
  background: #080810;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: 60% top;
  filter: contrast(1.05) brightness(.92);
  display: block;
}
/* Overlay gradiente sobre a imagem — esquerda funde com o bg */
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    var(--bg-page) 0%,
    rgba(10,10,15,.75) 25%,
    rgba(10,10,15,.35) 55%,
    transparent 75%
  );
}
/* Overlay inferior — texto sobre imagem */
.hero-img-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, var(--bg-page) 0%, transparent 100%);
}

/* Badge flutuante sobre a imagem */
.hero-float-badge {
  position: absolute; top: 32px; right: 24px;
  background: rgba(10,10,15,.85); border: 1px solid var(--border-glow);
  border-radius: var(--r-md); padding: 12px 16px;
  backdrop-filter: blur(12px); z-index: 2;
}
.hfb-label { font-size: 10px; font-weight: 700; color: var(--text-muted); letter-spacing: .8px; text-transform: uppercase; margin-bottom: 6px; }
.hfb-metric { font-family: 'Sora',sans-serif; font-size: 1.6rem; font-weight: 900; }
.hfb-sub { font-size: 11px; color: var(--teal); font-weight: 600; margin-top: 2px; }

/* ══ TICKER ══ */
.ticker-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 14px 0;
  background: linear-gradient(90deg, rgba(0,230,168,.03), rgba(0,174,239,.03));
}
.ticker-inner { display: inline-flex; animation: ticker 32s linear infinite; white-space: nowrap; }
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item { font-size: 13px; font-weight: 600; color: var(--text-muted); padding: 0 40px; }
.ticker-item::before {
  content: "✦"; margin-right: 16px;
  background: var(--grad-title); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
}
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══ SECTION HEADER ══ */
.s-eye {
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: var(--grad-title); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
  margin-bottom: 10px;
}
.s-title { margin-bottom: 16px; }
.s-sub { font-size: 16px; color: var(--text-muted); max-width: 560px; line-height: 1.72; }
.s-hdr { margin-bottom: 56px; }
.s-hdr.c { text-align: center; }
.s-hdr.c .s-sub { margin: 0 auto; }

/* ══ PARA QUEM — cards horizontais ══ */
.forwhom { background: var(--bg-page); }
.seg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.seg-card { padding: 26px; border-left: 3px solid transparent; }
.seg-card.p { border-left-color: var(--purple-mid); }
.seg-card.t { border-left-color: var(--teal); }
.seg-icon { font-size: 26px; margin-bottom: 12px; }
.seg-name { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.seg-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ══ FEATURE SECTION — layout editorial (imagem + texto) ══ */
.feature { background: var(--bg-page); }
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.feature-grid.reverse { direction: rtl; }
.feature-grid.reverse > * { direction: ltr; }
.feature-img {
  border-radius: var(--r-xl); overflow: hidden;
  position: relative; aspect-ratio: 4/5;
  box-shadow: var(--shadow-glow);
}
.feature-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block; filter: contrast(1.05) brightness(.9);
}
/* Overlay de texto sobre foto — exato das imagens MD */
.feature-img-overlay {
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(to top, rgba(10,10,15,.9) 0%, rgba(10,10,15,.2) 50%, transparent 70%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
}
.fi-overlay-title {
  font-family: 'Sora',sans-serif; font-size: 1.5rem; font-weight: 900;
  color: #fff; line-height: 1.25; margin-bottom: 8px;
}
.fi-overlay-title span { background: var(--grad-title); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.fi-overlay-sub { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }
/* Pills sobre imagem */
.fi-pills {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; white-space: nowrap;
}
.fi-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(10,10,15,.75); border: 1px solid rgba(0,230,168,.25);
  color: var(--text-primary); font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: var(--r-full);
  backdrop-filter: blur(8px);
}
.fi-pill-ico { font-size: 13px; }

.feature-content { }
.feature-checklist { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.f-check { display: flex; gap: 14px; align-items: flex-start; }
.f-check-ico {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(0,230,168,.1); border: 1px solid rgba(0,230,168,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; margin-top: 2px;
}
.f-check-txt strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.f-check-txt span { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ══ SERVIÇOS — grid 3 cols ══ */
.services { background: rgba(0,174,239,.02); }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc-card { padding: 30px; }
.svc-icon-wrap {
  width: 50px; height: 50px; border-radius: var(--r-md);
  background: rgba(0,230,168,.08); border: 1px solid rgba(0,230,168,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.svc-card.hl .svc-icon-wrap { background: rgba(0,174,239,.1); border-color: rgba(0,174,239,.25); }
.svc-name { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.svc-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.svc-price {
  font-size: 13px; font-weight: 700;
  background: var(--grad-title); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
}
.svc-card.hl .svc-price { background: var(--grad-teal); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.svc-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  margin-top: 10px; transition: color .2s;
}
.svc-link:hover { color: var(--teal); }

/* ══ PROCESSO — 4 steps ══ */
.how { background: var(--bg-page); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step-card { padding: 28px; }
.step-num {
  font-family: 'Sora',sans-serif; font-size: 3.2rem; font-weight: 900;
  background: var(--grad-title); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
  opacity:.3; line-height: 1; margin-bottom: 12px;
}
.step-title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ══ RESULTADOS ══ */
.results { background: rgba(0,230,168,.02); }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.results-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rnum-card { padding: 28px; text-align: center; }
.rnum {
  font-family: 'Sora',sans-serif; font-size: 2.8rem; font-weight: 900;
  background: var(--grad-title); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text; display: block;
}
.rnum-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.testi-cards { display: flex; flex-direction: column; gap: 16px; }
.testi-card { padding: 26px; border-left: 3px solid var(--teal); }
.testi-text { font-size: 14px; font-style: italic; color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }
.testi-name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* ══ AI SECTION ══ */
.ai-sec {
  padding: 100px 0; position: relative; overflow: hidden;
  background: var(--bg-page);
}
.ai-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 600px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse, rgba(0,174,239,.15) 0%, rgba(0,230,168,.07) 45%, transparent 68%);
}
.ai-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ai-eye { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: var(--grad-teal); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom: 14px; }
.ai-title { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 900; color: var(--text-primary); line-height: 1.2; margin-bottom: 18px; }
.ai-desc { color: var(--text-secondary); font-size: 15px; line-height: 1.78; margin-bottom: 28px; }
.ai-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ai-card { background: rgba(255,255,255,.025); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px; transition: border-color .2s; }
.ai-card:hover { border-color: rgba(0,230,168,.3); }
.ai-card-t { font-size: 13px; font-weight: 700; color: var(--teal); margin-bottom: 6px; }
.ai-card-d { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.ai-card.full { grid-column: 1/-1; }

/* ══ FORM ══ */
.form-sec { background: var(--bg-page); }
.form-grid { display: grid; grid-template-columns: 1fr 480px; gap: 72px; align-items: start; }
.form-bens { padding-top: 8px; }
.ben-item { display: flex; gap: 14px; margin-bottom: 24px; }
.ben-ico { width: 42px; height: 42px; border-radius: var(--r-md); background: rgba(0,230,168,.08); border: 1px solid rgba(0,230,168,.18); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ben-txt strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.ben-txt span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.form-card { padding: 38px; }
.form-title { font-size: 20px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 700; color: var(--text-secondary); margin-bottom: 6px; }
.field label .req { color: var(--danger); }
.field input,.field select,.field textarea {
  width: 100%; padding: 12px 14px;
  background: var(--bg-input); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-size: 14px;
  font-family: 'Inter',sans-serif; color: var(--text-primary);
  outline: none; transition: border-color .2s, box-shadow .2s; appearance: none;
}
.field input:focus,.field select:focus,.field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,230,168,.1); }
.field select option { background: var(--bg-card); color: var(--text-primary); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field textarea { resize: vertical; min-height: 80px; }
.field .err { font-size: 11px; color: var(--danger); margin-top: 4px; display: none; }
.field .err.show { display: block; }
.field input.error,.field select.error { border-color: var(--danger); }
.step-bar { display: flex; gap: 6px; margin-bottom: 24px; }
.step-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background .3s; }
.step-dot.active { background: var(--teal); box-shadow: 0 0 8px rgba(0,230,168,.5); }
.step-dot.done { background: var(--teal-2); }
.progress-track { height: 2px; background: var(--border); border-radius: 2px; margin-bottom: 24px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--grad-teal); border-radius: 2px; transition: width .4s ease; width: 0; }
.form-nav { display: flex; gap: 10px; margin-top: 20px; }
.btn-back-form { flex: 0 0 auto; padding: 12px 20px; background: rgba(255,255,255,.04); color: var(--text-secondary); border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Inter',sans-serif; display: none; transition: background .2s; }
.btn-back-form:hover { background: rgba(255,255,255,.08); }
.btn-next-form { flex: 1; padding: 13px; background: var(--grad-teal); color: #031A14; border: none; border-radius: var(--r-sm); font-size: 14px; font-weight: 800; cursor: pointer; font-family: 'Inter',sans-serif; display: flex; align-items: center; justify-content: center; gap: 8px; transition: filter .2s; }
.btn-next-form:hover { filter: brightness(1.1); }
.btn-next-form.loading { opacity: .7; pointer-events: none; }
.form-disclaimer { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 12px; line-height: 1.55; }
.form-disclaimer a { color: var(--teal); }
.success-box { display: none; text-align: center; padding: 32px 16px; }
.success-box.show { display: block; }
.success-ico-wrap { width: 64px; height: 64px; background: rgba(0,230,168,.1); border: 1px solid rgba(0,230,168,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 28px; }
.success-box h3 { font-size: 20px; color: var(--text-primary); margin-bottom: 8px; }
.success-box p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.opt-label { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: var(--r-sm); cursor: pointer; font-size: 13px; color: var(--text-secondary); font-weight: 600; transition: all .2s; user-select: none; }
.opt-label:hover { border-color: var(--teal); background: rgba(0,230,168,.05); }
.opt-label.checked { border-color: var(--teal); background: rgba(0,230,168,.08); color: var(--text-primary); }
.opt-label input { display: none; }
.opt-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; transition: all .2s; display: flex; align-items: center; justify-content: center; }
.opt-label.checked .opt-dot { border-color: var(--teal); background: var(--teal); }
.opt-label.checked .opt-dot::after { content: ""; width: 6px; height: 6px; background: #031A14; border-radius: 50%; }
.opt-err { font-size: 11px; color: var(--danger); margin-top: 4px; display: none; }
.opt-err.show { display: block; }

/* ══ CTA FINAL ══ */
.cta-sec { padding: 100px 0; text-align: center; position: relative; overflow: hidden; background: var(--bg-page); }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(0,174,239,.15) 0%, rgba(0,230,168,.07) 35%, transparent 65%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.cta-title { margin-bottom: 18px; }
.cta-sub { color: var(--text-muted); font-size: 16px; line-height: 1.72; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.cta-trust-item { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.cta-trust-item::before { content: "✓"; background: var(--grad-title); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; font-weight: 800; }

/* ══ FOOTER ══ */
footer { background: rgba(0,0,0,.5); border-top: 1px solid var(--border); color: var(--text-muted); padding: 52px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 14px; }
.footer-desc { font-size: 13px; line-height: 1.7; max-width: 240px; }
.footer-col-title { font-size: 11px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; background: var(--grad-title); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--text-muted); font-size: 12px; font-weight: 700; text-decoration: none; transition: color .2s; }
.footer-social a:hover { color: var(--teal); }

/* ══ WA FLOAT ══ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green-wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4); text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  animation: wa-bounce 3s ease infinite;
}
.wa-float svg { display: block; }
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 36px rgba(37,211,102,.6); animation: none; }
@keyframes wa-bounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }

/* ══ RESPONSIVE ══ */
@media(max-width:960px){
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 50vh; }
  .hero-left { padding: 72px 0 48px; }
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid.reverse { direction: ltr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .ai-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-bens { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .seg-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px){
  section { padding: 64px 0; }
  .hero-left { padding: 56px 0 40px; }
  .hero-right { height: 45vh; }
  .hero-stats { flex-direction: column; gap: 20px; border-top: 1px solid var(--border); }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 20px; }
  .hero-stat:last-child { border-bottom: none; }
  .svc-grid,.steps-grid { grid-template-columns: 1fr; }
  .results-nums { grid-template-columns: 1fr 1fr; }
  .seg-grid { grid-template-columns: 1fr; }
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .field-row,.opt-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 16px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-pills { gap: 7px; }
  .hero-pill { font-size: 11px; padding: 5px 11px; }
  .fi-pills { display: none; }
}


/* ══ HERO FADE-IN ANIMATIONS ══ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Aplicar nos elementos do hero */
.hero-pills        { animation: fadeInLeft .7s ease both; animation-delay: .1s; }
.hero-title        { animation: fadeInUp   .8s ease both; animation-delay: .25s; }
.hero-bar-wrap     { animation: fadeInUp   .8s ease both; animation-delay: .45s; }
.hero-actions      { animation: fadeInUp   .7s ease both; animation-delay: .6s; }
.hero-stats        { animation: fadeInUp   .7s ease both; animation-delay: .75s; }
.hero-right        { animation: fadeInRight .9s ease both; animation-delay: .2s; }
.hero-float-badge  { animation: scaleIn    .6s ease both; animation-delay: 1s; }

/* Ticker fade */
.ticker-wrap { animation: fadeIn .8s ease both; animation-delay: .9s; }

/* Feature section reveal */
.feature-img     { animation: fadeInLeft  .8s ease both; }
.feature-content { animation: fadeInRight .8s ease both; animation-delay: .15s; }

/* Parallax sutil no hero background */
.hero-img-wrap img {
  transition: transform .6s ease;
}
.hero:hover .hero-img-wrap img {
  transform: scale(1.02);
}
