/*
Theme Name: Visi Marketing — Landing
Theme URI: https://visimarketing.com.br/
Author: Visi Marketing
Author URI: https://visimarketing.com.br/
Description: Tema de landing page de captacao da Visi Marketing (oferta modular: trafego, dados, criativos e growth). Hero, prova social em carrossel, servicos, FAQ e formulario de diagnostico.
Version: 2.0.0
Requires at least: 5.5
Tested up to: 6.5
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: visi-landing
*/

/* =====================================================================
   VISI MARKETING — Landing Page de Captação (Tráfego / Oferta Modular)
   Identidade: preto #0A0A0A · azul #3DC4FD · azul profundo #0A6FB0
   Fontes: Staatliches (display) + Montserrat (corpo)
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Staatliches&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ---------- Tokens ---------- */
:root {
  --ink:        #0A0A0A;
  --ink-soft:   #121214;
  --ink-card:   #15161A;
  --white:      #FFFFFF;
  --gray-text:  #A6ACB8;
  --gray-mute:  #8B92A0;
  --gray-bg:    #F4F5F7;
  --blue:       #3DC4FD;
  --blue-deep:  #0A6FB0;
  --grad:       linear-gradient(135deg, #3DC4FD 0%, #0A6FB0 100%);
  --grad-text:  linear-gradient(120deg, #6FD6FF 0%, #3DC4FD 55%, #0A6FB0 100%);

  --glass-bg:     rgba(20, 21, 26, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --hairline:     rgba(255, 255, 255, 0.10);

  --font-display: 'Staatliches', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  --r-sm: 10px;  --r-md: 16px;  --r-lg: 24px;  --r-xl: 32px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; }
.display {
  font-family: var(--font-display);
  font-weight: 400; line-height: 0.98; letter-spacing: 0.01em;
  text-transform: uppercase;
}
.text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lead { color: var(--gray-text); font-size: 1.075rem; font-weight: 400; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 16px 30px; border-radius: var(--r-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap; text-align: center;
}
.btn-primary {
  background: var(--grad); color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(8, 40, 64, 0.35);
  box-shadow: 0 10px 30px -8px rgba(61, 196, 253, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -10px rgba(61, 196, 253, 0.7); }
.btn-ghost {
  background: rgba(255,255,255,.04); color: var(--white);
  border: 1px solid var(--hairline);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header flutuante ---------- */
.header {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 100;
  transition: top .3s var(--ease);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px 12px 22px;
  background: rgba(8, 9, 12, 0.86);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: 18px;
  box-shadow: 0 12px 40px -16px rgba(0,0,0,.8);
}
.header.scrolled .header-inner { background: rgba(6,7,9,.92); }
.header-logo img { height: 30px; width: auto; }
.header-nav { display: flex; gap: 30px; }
.header-nav a { font-size: 0.9rem; font-weight: 500; color: var(--gray-text); transition: color .2s; }
.header-nav a:hover { color: var(--white); }
.header .btn { padding: 11px 22px; font-size: 0.85rem; }
.header-burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.header-burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 32px 0 90px; overflow: hidden;
  background:
    radial-gradient(900px 500px at 78% 8%, rgba(61,196,253,.16), transparent 60%),
    radial-gradient(700px 600px at 8% 70%, rgba(10,111,176,.18), transparent 62%),
    var(--ink);
}
.hero-topbar { display: flex; align-items: center; margin-bottom: 30px; }
/* !important vence a regra global do WordPress: img { height: auto !important } */
.hero-logo img { height: 48px !important; width: auto !important; max-width: none !important; display: block; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px; border-radius: 100px; margin-bottom: 26px;
  background: rgba(61,196,253,.08); border: 1px solid rgba(61,196,253,.22);
  font-size: 0.78rem; font-weight: 600; color: var(--blue); letter-spacing: .02em;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(61,196,253,.18); }
.hero h1 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.5rem, 5.3vw, 4.3rem); line-height: 0.96; letter-spacing: .01em;
  margin-bottom: 22px;
}
.hero p.lead { font-size: 1.15rem; max-width: 540px; margin-bottom: 30px; }
.hero-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.hero-points li { display: flex; align-items: flex-start; gap: 12px; list-style: none; font-size: 0.98rem; color: #D7DAE0; }
.hero-points .ck {
  flex: 0 0 22px; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%;
  background: rgba(61,196,253,.14); display: grid; place-items: center;
}
.hero-points .ck svg { width: 13px; height: 13px; stroke: var(--blue); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* ---------- Hero CLARO (fundo branco) ---------- */
.hero-light { background: #FFFFFF; color: var(--ink); padding-bottom: 40px; }
.hero-light .hero-bg-accent {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(620px 420px at 88% 6%, rgba(61,196,253,.18), transparent 62%),
    radial-gradient(520px 420px at -5% 85%, rgba(10,111,176,.10), transparent 60%);
}
.hero-light .container { position: relative; z-index: 1; }
.hero-light h1 { color: var(--ink); }
.hero-light p.lead { color: #4A4F5A; }
.hero-light .hero-badge { background: rgba(61,196,253,.10); border-color: rgba(61,196,253,.35); color: var(--blue-deep); }
.hero-light .hero-points li { color: #2C2F36; }
.hero-light .hero-points .ck { background: rgba(61,196,253,.16); }
.hero-visual { position: relative; }
.hero-visual::before {
  content: ''; position: absolute; inset: -8% -6% -10% -6%; z-index: 0; border-radius: 40px;
  background: radial-gradient(60% 60% at 60% 40%, rgba(61,196,253,.22), transparent 70%);
  filter: blur(8px);
}
.hero-visual img {
  position: relative; z-index: 1; width: 100%; border-radius: var(--r-lg);
  opacity: 0.9;
}
/* esteira de clientes sobre fundo branco */
.hero-light .clients { border-top: 1px solid rgba(10,10,10,.08); margin-top: 30px; }
.hero-light .clients p { color: #5B6472; }
.hero-light .clients-row img { filter: grayscale(1); opacity: .55; }
.hero-light .clients-row img:hover { filter: grayscale(0); opacity: 1; transform: translateY(-3px) scale(1.04); }

/* botão outline (hero claro) */
.btn-outline { background: transparent; color: var(--ink); border: 1px solid rgba(10,10,10,.18); }
.btn-outline:hover { background: rgba(10,10,10,.04); border-color: var(--blue); color: var(--blue-deep); transform: translateY(-2px); }

/* ---------- Card / Formulário ---------- */
.form-card {
  background: linear-gradient(180deg, rgba(28,30,36,.9), rgba(16,17,21,.92));
  border: 1px solid var(--glass-border); border-radius: var(--r-lg);
  padding: 34px 30px; box-shadow: 0 30px 70px -30px rgba(0,0,0,.9);
  position: relative;
}
.form-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-lg); padding: 1px;
  background: linear-gradient(160deg, rgba(61,196,253,.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.form-card h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; letter-spacing: -.01em; }
.form-card .sub { color: var(--gray-text); font-size: 0.9rem; margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; color: #C6CAD2; margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 13px 15px; font-family: inherit; font-size: 0.95rem;
  color: var(--white); background: rgba(255,255,255,.04);
  border: 1px solid var(--hairline); border-radius: var(--r-sm); transition: border .2s, background .2s;
}
.field input::placeholder { color: #5b606b; }
.field input:focus, .field select:focus { outline: none; border-color: var(--blue); background: rgba(61,196,253,.05); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239AA0AB' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.field select option { background: #15161A; color: #fff; }
.form-card .btn { margin-top: 8px; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--gray-mute); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.form-note svg { width: 14px; height: 14px; stroke: var(--gray-mute); }
.form-success {
  display: none; text-align: center; padding: 24px 10px;
}
.form-success.show { display: block; }
.form-success .ico { width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%; background: rgba(61,196,253,.14); display: grid; place-items: center; }
.form-success .ico svg { width: 30px; height: 30px; stroke: var(--blue); }
.form-success h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--gray-text); font-size: 0.95rem; margin-bottom: 20px; }

/* ---------- Formulário: card 3D tilt + glow (efeito premium) ---------- */
.form-tilt { perspective: 1100px; }
.form-card {
  transform-style: preserve-3d;
  transition: box-shadow .4s var(--ease);
  will-change: transform;
}
.form-card.is-tilting { box-shadow: 0 50px 90px -40px rgba(0,0,0,.95), 0 0 0 1px rgba(61,196,253,.18); }
/* brilho radial seguindo o cursor */
.card-glow {
  position: absolute; inset: 0; border-radius: inherit; z-index: 0; pointer-events: none;
  opacity: 0; transition: opacity .35s var(--ease);
  background: radial-gradient(380px circle at var(--gx, 50%) var(--gy, 0%), rgba(61,196,253,.20), transparent 60%);
}
.form-card.is-tilting .card-glow { opacity: 1; }
/* grid sutil de fundo */
.card-grid {
  position: absolute; inset: 0; border-radius: inherit; z-index: 0; pointer-events: none; opacity: .55;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 80%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 80%);
}
/* conteúdo acima das camadas decorativas */
.form-card > form, .form-card > .form-success { position: relative; z-index: 1; }
@media (hover: none), (max-width: 720px) {
  .form-card { transform: none !important; } /* sem tilt no mobile */
  .card-glow { display: none; }
}

/* ---------- Esteira de clientes (carrossel) ---------- */
.clients { padding: 48px 0 16px; }
.clients-carousel {
  position: relative; width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.clients-track { display: flex; align-items: center; gap: 70px; width: max-content; animation: clients-scroll 36s linear infinite; }
@keyframes clients-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.clients-track img { height: 58px !important; width: auto !important; max-width: none !important; opacity: .7; filter: grayscale(1); transition: opacity .25s, filter .25s, transform .25s; }
.clients-track img:hover { opacity: 1; filter: grayscale(0); transform: scale(1.06); }

/* ---------- Seções genéricas ---------- */
section { position: relative; }
.section { padding: 96px 0; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1; letter-spacing: .01em; margin-bottom: 18px;
}
.section-head p { color: var(--gray-text); font-size: 1.08rem; }

/* ---------- Avaliações Google (carrossel) ---------- */
.google-rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; padding: 9px 18px; border-radius: 100px; background: rgba(255,255,255,.03); border: 1px solid var(--hairline); }
.google-rating .g-logo { width: 22px; height: 22px; }
.google-rating .g-stars { color: #FBBC05; font-size: 1.05rem; letter-spacing: 2px; }
.google-rating .g-text { font-size: 0.86rem; color: var(--gray-text); font-weight: 500; }

.reviews-carousel { position: relative; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.reviews-carousel::after { content: ''; }
.reviews-carousel { cursor: grab; }
.reviews-carousel.dragging { cursor: grabbing; }
.reviews-track { display: flex; gap: 22px; width: max-content; will-change: transform; user-select: none; }
.reviews-track img, .reviews-track .review-card { -webkit-user-drag: none; user-drag: none; }

.review-card {
  flex: 0 0 360px; width: 360px; background: var(--ink-card); border: 1px solid var(--hairline);
  border-radius: var(--r-md); padding: 26px 26px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.review-card:hover { transform: translateY(-6px); border-color: rgba(61,196,253,.4); box-shadow: 0 24px 50px -24px rgba(0,0,0,.8); }
.review-card .r-top { display: flex; align-items: center; gap: 12px; }
.review-card .av {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 44px;
  background: var(--av, var(--blue)); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.15rem;
}
.review-card .r-who { flex: 1; min-width: 0; }
.review-card .r-who b { display: block; font-size: 0.95rem; font-weight: 700; }
.review-card .r-who span { font-size: 0.8rem; color: var(--gray-mute); }
.review-card .r-g { width: 20px; height: 20px; flex: 0 0 20px; }
.review-card .r-stars { color: #FBBC05; font-size: 1rem; letter-spacing: 2px; }
.review-card p { font-size: 0.97rem; color: #D8DBE1; line-height: 1.6; }

/* ---------- Dores ---------- */
.pains { background: var(--ink-soft); }
.pains-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pain {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.02); border: 1px solid var(--hairline);
  border-radius: var(--r-md); padding: 24px 24px;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.pain:hover { transform: translateY(-4px); border-color: rgba(255,107,107,.4); background: rgba(255,90,90,.04); }
.pain .x { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 11px; background: rgba(255,90,90,.1); display: grid; place-items: center; transition: transform .35s var(--ease), background .3s; }
.pain:hover .x { transform: rotate(90deg) scale(1.08); background: rgba(255,90,90,.18); }
.pain .x svg { width: 19px; height: 19px; stroke: #ff6b6b; }
.pain h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 5px; }
.pain p { font-size: 0.92rem; color: var(--gray-text); }
.pains-cta { text-align: center; margin-top: 46px; }

/* ---------- Autoridade / números ---------- */
.authority { position: relative; overflow: hidden; }
.authority-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.86), rgba(10,10,10,.94)),
    url('images/imageshero_bg.png') center/cover no-repeat;
}
.authority .container { position: relative; z-index: 1; }
.authority-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.authority-media { position: relative; }
.authority-media::before {
  content: ''; position: absolute; inset: -10%; border-radius: 30px; z-index: 0;
  background: radial-gradient(55% 55% at 50% 45%, rgba(61,196,253,.22), transparent 70%); filter: blur(6px);
}
.authority-media img { position: relative; z-index: 1; width: 100%; }
.authority-content .eyebrow { margin-bottom: 18px; }
.authority-content h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1; margin-bottom: 16px; }
.authority-content > p { color: var(--gray-text); font-size: 1.06rem; margin-bottom: 28px; max-width: 520px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 8px 0 44px; }
.stats-2 { grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 0 0 28px; }
.stat {
  position: relative; overflow: hidden;
  background: var(--ink-card); border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 34px 18px; transition: transform .35s var(--ease), border-color .35s;
}
.stat::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .35s;
  background: radial-gradient(120% 90% at 50% 0%, rgba(61,196,253,.14), transparent 70%);
}
.stat:hover { transform: translateY(-6px); border-color: rgba(61,196,253,.45); }
.stat:hover::before { opacity: 1; }
.stat .num { position: relative; font-family: var(--font-display); font-size: clamp(2.6rem, 4.8vw, 3.7rem); line-height: 1; margin-bottom: 8px; }
.stat .num .u { font-size: 1em; }
.stat .lbl { position: relative; font-size: 0.86rem; color: var(--gray-text); letter-spacing: .02em; }

/* ---------- Oferta modular ---------- */
.modules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.module {
  position: relative; background: var(--ink-card); border: 1px solid var(--hairline);
  border-radius: var(--r-lg); padding: 34px 32px; overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.module::before {
  content: ''; position: absolute; width: 320px; height: 320px; top: -120px; right: -120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,196,253,.16), transparent 70%);
  opacity: 0; transform: scale(.6); transition: opacity .45s var(--ease), transform .45s var(--ease); pointer-events: none;
}
.module:hover { transform: translateY(-8px); border-color: rgba(61,196,253,.45); box-shadow: 0 30px 60px -30px rgba(0,0,0,.85); }
.module:hover::before { opacity: 1; transform: scale(1); }
.module::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.module:hover::after { transform: scaleX(1); }
.module > * { position: relative; }
.module .mod-ico { width: 54px; height: 54px; border-radius: 14px; background: rgba(61,196,253,.1); display: grid; place-items: center; margin-bottom: 20px; transition: transform .4s var(--ease), background .35s; }
.module:hover .mod-ico { transform: translateY(-4px) rotate(-6deg); background: rgba(61,196,253,.2); }
.module .mod-ico svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; transition: transform .4s var(--ease); }
.module:hover .mod-ico svg { transform: scale(1.12); }
.module .tag { font-size: 0.74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.module h3 { font-size: 1.4rem; font-weight: 700; margin: 4px 0 12px; letter-spacing: -.01em; }
.module p { font-size: 0.96rem; color: var(--gray-text); margin-bottom: 18px; }
.module ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.module ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: #D2D5DB; }
.module ul li svg { flex: 0 0 16px; width: 16px; height: 16px; stroke: var(--blue); margin-top: 3px; }

/* ---------- Showcase (dashboard) ---------- */
.showcase { background: var(--ink-soft); overflow: hidden; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.showcase-copy .eyebrow { margin-bottom: 18px; }
.showcase-copy h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1; margin-bottom: 16px; }
.showcase-copy > p { color: var(--gray-text); font-size: 1.06rem; margin-bottom: 22px; max-width: 480px; }
.showcase-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.showcase-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.96rem; color: #D2D5DB; }
.showcase-list li svg { flex: 0 0 17px; width: 17px; height: 17px; stroke: var(--blue); margin-top: 3px; }
.showcase-media { position: relative; }
.showcase-media::before {
  content: ''; position: absolute; inset: -8%; z-index: 0; border-radius: 30px;
  background: radial-gradient(55% 55% at 55% 45%, rgba(61,196,253,.22), transparent 70%); filter: blur(8px);
}
.showcase-media img {
  position: relative; z-index: 1; width: 100%; border-radius: var(--r-lg);
  border: 1px solid var(--hairline); box-shadow: 0 36px 80px -34px rgba(0,0,0,.9);
  transition: transform .4s var(--ease);
}
.showcase-media:hover img { transform: translateY(-6px) scale(1.01); }

/* ---------- Como funciona ---------- */
.how { position: relative; overflow: hidden; background: var(--ink); }
.how::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.74), rgba(10,10,10,.82)),
    url('images/imagesglow-section.png') center/cover no-repeat;
}
.how .container { position: relative; z-index: 1; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; border: 1px solid var(--hairline); border-radius: var(--r-md); background: rgba(255,255,255,.015); overflow: hidden; transition: transform .35s var(--ease), border-color .35s, background .35s; }
.step::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.step:hover { transform: translateY(-6px); border-color: rgba(61,196,253,.4); background: rgba(61,196,253,.03); }
.step:hover::after { transform: scaleX(1); }
.step .n { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(61,196,253,.55); margin-bottom: 14px; display: block; transition: -webkit-text-stroke-color .35s, transform .35s var(--ease); }
.step:hover .n { -webkit-text-stroke-color: var(--blue); transform: scale(1.06); }
.step h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--gray-text); }

/* ---------- FAQ ---------- */
.faq-section { background: var(--ink-soft); }
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq-aside { position: sticky; top: 110px; }
.faq-aside .eyebrow { margin-bottom: 18px; }
.faq-aside h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1; margin-bottom: 16px; }
.faq-aside p { color: var(--gray-text); font-size: 1.02rem; margin-bottom: 26px; }
.faq-grid { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--ink-card); border: 1px solid var(--hairline); border-radius: var(--r-md);
  overflow: hidden; transition: border-color .3s, background .3s, box-shadow .3s;
}
.faq-item:hover { border-color: rgba(61,196,253,.32); }
.faq-item.open { border-color: rgba(61,196,253,.45); box-shadow: 0 20px 50px -30px rgba(0,0,0,.8); }
.faq-q { width: 100%; display: flex; align-items: center; gap: 14px; padding: 22px 22px; text-align: left; font-size: 1.02rem; font-weight: 600; color: var(--white); }
.faq-ico { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 9px; background: rgba(61,196,253,.12); color: var(--blue); font-family: var(--font-display); font-size: 1.1rem; display: grid; place-items: center; transition: background .3s, transform .35s var(--ease); }
.faq-item.open .faq-ico, .faq-item:hover .faq-ico { background: var(--grad); color: var(--ink); transform: rotate(-8deg); }
.faq-q .pm { flex: 0 0 22px; width: 22px; height: 22px; margin-left: auto; position: relative; transition: transform .35s var(--ease); }
.faq-q .pm::before, .faq-q .pm::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--blue); }
.faq-q .pm::before { width: 13px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 13px; transition: transform .3s; }
.faq-item.open .pm { transform: rotate(180deg); }
.faq-item.open .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { height: 0; overflow: hidden; transition: height .35s var(--ease); }
.faq-a p { padding: 2px 22px 22px 66px; color: var(--gray-text); font-size: 0.96rem; line-height: 1.65; }

/* ---------- CTA final (fundo branco) ---------- */
.final {
  position: relative; overflow: hidden; background: #FFFFFF;
}
.final::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(620px 420px at 92% 100%, rgba(61,196,253,.16), transparent 62%),
    radial-gradient(520px 380px at 0% 0%, rgba(10,111,176,.08), transparent 60%);
}
.final .container { position: relative; z-index: 1; }
.final-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 56px; align-items: center; }
.final-copy h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; color: var(--ink); font-size: clamp(2.1rem, 4.4vw, 3.5rem); line-height: 1; margin-bottom: 18px; }
.final-copy > p { color: #4A4F5A; font-size: 1.12rem; max-width: 480px; margin-bottom: 24px; }
.final-points { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.final-points li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.98rem; color: #2C2F36; }
.final-points li svg { flex: 0 0 18px; width: 18px; height: 18px; stroke: var(--blue-deep); margin-top: 2px; }
.final .form-card { margin: 0; }

/* ---------- Footer ---------- */
.footer { background: #060607; border-top: 1px solid rgba(255,255,255,.06); padding: 58px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand img { height: 32px !important; width: auto !important; max-width: none !important; margin-bottom: 18px; }
.footer-brand p { color: var(--gray-mute); font-size: 0.9rem; max-width: 300px; }
.footer-col h3 { font-size: 0.8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; color: var(--gray-mute); font-size: 0.92rem; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--gray-mute); font-size: 0.82rem; }

/* ---------- Reveal anim ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 10px 30px -6px rgba(37,211,102,.6);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 0; }
  .hero-visual { max-width: 460px; }
  .modules-grid, .pains-grid { grid-template-columns: 1fr; }
  .stats, .steps { grid-template-columns: repeat(2, 1fr); }
  .authority-grid, .showcase-grid { grid-template-columns: 1fr; gap: 36px; }
  .authority-media, .showcase-media { max-width: 520px; }
  .showcase-grid .showcase-media { order: -1; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-aside { position: static; }
  .final-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .hero-topbar { display: none; }      /* mobile: sem logo no hero */
  .hero { padding-top: 28px; }
  .section { padding: 70px 0; }
  .clients-row { gap: 26px 34px; }
  .clients-row img { height: 24px; }
  .review-card { flex: 0 0 290px; width: 290px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .steps { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
