/* ════════════════════════════════════════════════
   Instituto Stephanie Lich — style.css
   Ubuntu · Dark premium · Alta conversão
════════════════════════════════════════════════ */

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Ubuntu', sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: 'Ubuntu', sans-serif; cursor: pointer; border: none; background: none; }

/* ── TOKENS ─────────────────────────────────── */
:root {
  --red:        #EA4D2F;
  --red2:       #c73a1e;
  --red-glow:   rgba(234,77,47,.3);
  --yellow:     #FAC94B;
  --yel2:       #d4a32e;
  --green:      #25D366;
  --green2:     #1db954;
  --green-glow: rgba(37,211,102,.35);
  --ink:        #0D0D0D;
  --ink2:       #1a1a1a;
  --mid:        #555;
  --muted:      #888;
  --border:     #E5E5E5;
  --bg:         #F7F7F5;
  --white:      #fff;
  --r:          16px;
  --r2:         24px;
  --r3:         32px;
  --ease:       cubic-bezier(.22,1,.36,1);
}

/* ── LAYOUT ─────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }

/* ── REVEAL ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ── LABELS ─────────────────────────────────── */
.label { display: inline-flex; align-items: center; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.red-label    { color: var(--red);  background: rgba(217,48,37,.1);  border: 1px solid rgba(217,48,37,.2); }
.yellow-label { color: #111;        background: var(--yellow);        border: 1px solid var(--yellow); }

/* ── SECTION TITLES ─────────────────────────── */
.sh2 { font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 700; line-height: 1.15; letter-spacing: -.015em; color: var(--ink); margin-bottom: 16px; }
.sh2 em { font-style: italic; color: var(--red); }
.sh2.white { color: #fff; }
.sbody { font-size: 15px; color: var(--mid); line-height: 1.8; max-width: 460px; }
.sbody.white-muted { color: rgba(255,255,255,.75); }
.sbody.center-p { text-align: center; max-width: 560px; margin: 0 auto; }
.sec-header { margin-bottom: 56px; }
.sec-header.center { text-align: center; }

/* ── CTAs ─────────────────────────────────── */
.cta-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  font-size: 15px; font-weight: 600; padding: 16px 36px; border-radius: 100px; margin-top: 32px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.cta-red:hover { background: var(--red2); transform: translateY(-3px); box-shadow: 0 10px 28px var(--red-glow); }

.cta-yellow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  font-size: 15px; font-weight: 600; padding: 16px 36px; border-radius: 100px; margin-top: 32px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.cta-yellow:hover { background: var(--green2); transform: translateY(-3px); box-shadow: 0 10px 28px var(--green-glow); }

/* ════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════ */
.nav { position: sticky; top: 0; left: 0; right: 0; z-index: 1000; background: #ffffff; border-bottom: 1px solid #E8E8E8; box-shadow: 0 2px 16px rgba(0,0,0,.06); transition: box-shadow .35s; }
.nav.stuck { box-shadow: 0 4px 28px rgba(0,0,0,.12); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; height: 100px; display: flex; align-items: center; gap: 36px; }
.nav-logo img { height: 120px; width: auto; }
.nav-links { list-style: none; display: flex; gap: 32px; margin: 0 auto; }
.nav-links a { font-size: 13px; font-weight: 500; color: #555; transition: color .2s; }
.nav-links a:hover { color: #1F41B4; }
.nav-cta { flex-shrink: 0; background: var(--red); color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .03em; padding: 11px 24px; border-radius: 100px; transition: background .2s, transform .2s, box-shadow .2s; }
.nav-cta:hover { background: var(--red2); transform: translateY(-1px); box-shadow: 0 6px 20px var(--red-glow); }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: #111; border-radius: 2px; transition: all .3s var(--ease); }
.nav-mobile { display: none; flex-direction: column; padding: 20px 40px 32px; gap: 4px; background: #111; border-top: 1px solid rgba(255,255,255,.08); }
.nav-mobile a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.65); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07); transition: color .2s; }
.nav-mobile a:hover { color: #fff; }
.nav-mobile .mob-cta { margin-top: 12px; text-align: center; background: var(--green); color: #fff; border-radius: 100px; border: none; padding: 14px; font-weight: 700; font-size: 14px; }
.nav-mobile.open { display: flex; }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero { position: relative; min-height: calc(100vh - 37px); padding-top: 0; background: #0D0D0D; display: flex; align-items: center; overflow: hidden; }
.hero-flag { position: absolute; top: 0; right: 0; width: 46%; height: 100%; display: flex; flex-direction: column; clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%); pointer-events: none; }
.hf-black  { flex: 1; background: #1a1a1a; }
.hf-red    { flex: 1; background: var(--red); }
.hf-yellow { flex: 1; background: var(--yellow); }
.hero-overlay { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to right, #0D0D0D 42%, rgba(13,13,13,.55) 65%, rgba(13,13,13,.15) 100%); }
.hero::after { content: ''; position: absolute; right: 0; bottom: 0; width: 38%; height: 90%; background: url('https://images.unsplash.com/photo-1488190211105-8b0e65b80b4e?w=800&q=85&fit=crop&crop=top') center top / cover no-repeat; mask-image: linear-gradient(to left, rgba(0,0,0,.7) 0%, rgba(0,0,0,.3) 60%, transparent 100%), linear-gradient(to top, transparent 0%, black 20%); mask-composite: intersect; -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,.7) 0%, rgba(0,0,0,.3) 60%, transparent 100%); z-index: 1; pointer-events: none; }
.hero-inner { position: relative; z-index: 2; max-width: 1160px; width: 100%; margin: 0 auto; padding: 72px 40px 88px; display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: .04em; color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); padding: 10px 22px; border-radius: 100px; margin-bottom: 28px; }
.pulse-dot { width: 8px; height: 8px; background: #1F41B4; border-radius: 50%; box-shadow: 0 0 0 0 rgba(31,65,180,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(31,65,180,.6); } 70% { box-shadow: 0 0 0 8px rgba(31,65,180,0); } 100% { box-shadow: 0 0 0 0 rgba(31,65,180,0); } }
.hero-h1 { font-size: 55px; font-weight: 700; line-height: 1.12; letter-spacing: -.02em; color: #fff; margin-bottom: 22px; }
.hero-h1 em { font-style: italic; color: var(--yellow); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.82); line-height: 1.8; max-width: 460px; margin-bottom: 36px; }
.hero-sub strong { color: #FAC94B; font-weight: 700; }
.hero-proof { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.proof-avatars { display: flex; }
.proof-avatars img { width: 40px; height: 40px; border-radius: 50%; border: 2.5px solid #0D0D0D; object-fit: cover; margin-left: -10px; }
.proof-avatars img:first-child { margin-left: 0; }
.proof-stars { color: var(--yellow); font-size: 12px; letter-spacing: 2px; margin-bottom: 2px; }
.hero-proof span { font-size: 13px; color: rgba(255,255,255,.85); }
.hero-proof strong { color: #fff; }
.cert-strip { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cert-lbl { font-size: 11px; color: rgba(255,255,255,.35); font-weight: 500; }
.cert-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.cert-pills span { font-size: 12px; font-weight: 500; letter-spacing: .02em; color: rgba(255,255,255,.65); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); padding: 6px 16px; border-radius: 100px; transition: all .2s; }
.cert-pills span:hover { color: #fff; background: #1F41B4; border-color: #1F41B4; }

/* ── FORMULÁRIO ─────────────────────────────── */
.hero-form-card { background: #fff; border-radius: var(--r3); box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 4px 16px rgba(0,0,0,.2); padding: 36px; animation: floatCard 5s ease-in-out infinite; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hfc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.hfc-logo { height: 48px; width: auto; flex-shrink: 0; }
.hfc-title { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.hfc-sub   { font-size: 12px; color: var(--muted); margin-top: 3px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field select { width: 100%; padding: 13px 16px; font-family: 'Ubuntu', sans-serif; font-size: 14px; color: var(--ink); background: var(--bg); border: 2px solid var(--border); border-radius: var(--r); outline: none; appearance: none; -webkit-appearance: none; transition: border-color .2s, box-shadow .2s, background .2s; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field input:focus, .field select:focus { border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(37,211,102,.12); }
.field input::placeholder { color: var(--muted); }
.form-submit { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: var(--green); color: #fff; font-size: 14px; font-weight: 700; padding: 16px; border-radius: var(--r); margin-bottom: 10px; transition: background .2s, transform .2s, box-shadow .2s; }
.form-submit:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 10px 28px var(--green-glow); }
.form-note { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.6; }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 16px 0; }
.form-success.active { display: flex; }
.fs-em { font-size: 48px; }
.form-success h3 { font-size: 18px; font-weight: 700; color: var(--ink); }
.form-success p  { font-size: 14px; color: var(--mid); line-height: 1.65; }
.fs-wpp { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; font-size: 14px; font-weight: 700; padding: 13px 28px; border-radius: 100px; margin-top: 8px; transition: background .2s, transform .2s; }
.fs-wpp:hover { background: var(--green2); transform: translateY(-2px); }

/* ════════════════════════════════════════════════
   NÚMEROS
════════════════════════════════════════════════ */
.numbers-bar { background: var(--ink); padding: 60px 0; border-top: 1px solid rgba(255,255,255,.06); position: relative; overflow: hidden; }
.numbers-bar::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1600&q=75&fit=crop') center / cover no-repeat; opacity: 0.07; pointer-events: none; }
.numbers-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-around; }
.num-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.nv { font-size: clamp(2rem,3.5vw,3rem); font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1; }
.nl { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.65); }
.num-div { width: 1px; height: 56px; background: rgba(255,255,255,.1); }

/* ════════════════════════════════════════════════
   PROBLEMA
════════════════════════════════════════════════ */
.problem-section { padding: 120px 0; background: var(--bg); position: relative; overflow: hidden; }
.problem-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1400&q=80&fit=crop') center / cover no-repeat; opacity: 0.04; pointer-events: none; }
.prob-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 88px; align-items: start; }
.prob-left { position: sticky; top: 88px; }
.pain-card { display: flex; gap: 20px; align-items: flex-start; background: #fff; border-radius: var(--r2); border: 1px solid var(--border); padding: 28px; margin-bottom: 14px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.pain-card:hover { transform: translateX(8px); border-color: var(--red); box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.pain-em { font-size: 34px; flex-shrink: 0; margin-top: 0; }
.pain-body strong { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.pain-body p { font-size: 14px; color: var(--mid); line-height: 1.75; }

/* ════════════════════════════════════════════════
   DIFERENCIAIS
════════════════════════════════════════════════ */
.diff-section { background: #0D0D0D; padding: 120px 0; position: relative; overflow: hidden; }
.diff-bg-grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 60px 60px; }
.diff-glow-orange { position: absolute; top: -120px; left: -120px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(234,77,47,.18) 0%, transparent 70%); pointer-events: none; }
.diff-glow-blue { position: absolute; bottom: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(31,65,180,.2) 0%, transparent 70%); pointer-events: none; }
.diff-container { position: relative; z-index: 2; }
.diff-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 48px; }
.dc { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 32px 28px; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; position: relative; overflow: hidden; }
.dc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #1F41B4, #FAC94B); opacity: 0; transition: opacity .3s; }
.dc:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.4); border-color: rgba(255,255,255,.2); }
.dc:hover::before { opacity: 1; }
.dc-featured { background: var(--red); border-color: transparent; box-shadow: 0 8px 40px rgba(234,77,47,.35); }
.dc-featured::before { background: linear-gradient(90deg, #fff, #FAC94B); opacity: 1; }
.dc-featured:hover { box-shadow: 0 20px 60px rgba(234,77,47,.5); border-color: transparent; }
.dc-feat-bg { position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%); pointer-events: none; }
.dc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dc-num { font-size: 42px; font-weight: 900; letter-spacing: -.04em; color: rgba(255,255,255,.1); line-height: 1; }
.dc-featured .dc-num { color: rgba(255,255,255,.2); }
.dc-icon-wrap { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.orange-wrap { background: rgba(234,77,47,.2); border: 1px solid rgba(234,77,47,.35); }
.blue-wrap   { background: rgba(31,65,180,.25); border: 1px solid rgba(31,65,180,.4); }
.white-wrap  { background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.35); }
.dc h3 { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 10px; }
.dc p  { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.75; flex: 1; }
.dc-featured p { color: rgba(255,255,255,.88); }
.dc-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }
.dc-featured .dc-footer { border-color: rgba(255,255,255,.2); }
.dc-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; }
.dc-yellow-tag { background: var(--yellow); color: #111; }
.dc-white-tag  { background: #fff; color: var(--red); }
.dc-stat { font-size: 13px; color: rgba(255,255,255,.5); }
.dc-stat strong { color: #FAC94B; font-weight: 700; }
.diff-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 32px 40px; }
.diff-cta-text { display: flex; flex-direction: column; gap: 4px; }
.diff-cta-text strong { font-size: 18px; font-weight: 700; color: #fff; }
.diff-cta-text span   { font-size: 14px; color: rgba(255,255,255,.55); }
.diff-cta-btn { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; background: var(--green); color: #fff; font-size: 15px; font-weight: 700; letter-spacing: .02em; padding: 16px 32px; border-radius: 100px; transition: background .2s, transform .2s, box-shadow .2s; }
.diff-cta-btn:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 10px 28px var(--green-glow); }

/* ════════════════════════════════════════════════
   COMO FUNCIONA
════════════════════════════════════════════════ */
.how-section { padding: 120px 0; background: var(--bg); position: relative; overflow: hidden; }
.how-section::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 30%; background: url('https://images.unsplash.com/photo-1606761568499-6d2451b23c66?w=800&q=80&fit=crop&crop=right') right center / cover no-repeat; opacity: 0.07; mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,.6) 100%); -webkit-mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,.5) 100%); pointer-events: none; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r2); padding: 32px 24px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; position: relative; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.step-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #1F41B4, #FAC94B); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.step-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.1); border-color: transparent; }
.step-card:hover::before { transform: scaleX(1); }
.step-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #1F41B4; background: rgba(31,65,180,.08); border: 1px solid rgba(31,65,180,.2); padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; }
.step-icon { font-size: 44px; margin-bottom: 16px; }
.step-card h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.35; }
.step-card p  { font-size: 14px; color: var(--mid); line-height: 1.75; }

/* ════════════════════════════════════════════════
   PARA QUEM É
════════════════════════════════════════════════ */
.who-section { background: #0D0D0D; padding: 120px 0; position: relative; overflow: hidden; }
.who-section::before { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 48%; background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=900&q=85&fit=crop') center / cover no-repeat; opacity: 0.35; mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,1) 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,1) 100%); pointer-events: none; }
.who-grid { display: grid; grid-template-columns: 380px 1fr; gap: 88px; align-items: start; }
.who-left { position: sticky; top: 88px; }
.who-numbers { display: flex; gap: 32px; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); }
.wn-item { display: flex; flex-direction: column; }
.wn-val { font-size: 24px; font-weight: 900; color: var(--yellow); letter-spacing: -.02em; line-height: 1; }
.wn-lbl { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 4px; }
.who-item { display: flex; gap: 20px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.07); transition: transform .2s; }
.who-item:last-child { border-bottom: none; }
.who-item:hover { transform: translateX(6px); }
.who-check { width: 30px; height: 30px; border-radius: 50%; background: #1F41B4; color: #fff; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }
.who-item strong { display: block; font-size: 15px; font-weight: 600; color: #FAC94B; margin-bottom: 7px; line-height: 1.4; }
.who-item p { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.75; }

/* ════════════════════════════════════════════════
   DEPOIMENTOS
════════════════════════════════════════════════ */
.testi-section { padding: 120px 0; background: var(--bg); position: relative; overflow: hidden; }
.testi-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('https://images.unsplash.com/photo-1571260899304-425eee4c7efc?w=1600&q=75&fit=crop') center / cover no-repeat; opacity: 0.09; pointer-events: none; }
.testi-hero { display: grid; grid-template-columns: 260px 1fr 280px; gap: 0; margin-bottom: 24px; background: #0D0D0D; border-radius: var(--r3); overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.testi-hero-img { position: relative; overflow: hidden; }
.testi-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.85) brightness(0.9); }
.thi-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,.7) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 24px; }
.thi-tag { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--red); padding: 6px 14px; border-radius: 100px; }
.testi-hero-left { padding: 56px; display: flex; flex-direction: column; justify-content: space-between; }
.th-quote { font-size: 80px; line-height: .85; font-weight: 700; color: var(--red); opacity: .7; margin-bottom: 12px; font-style: italic; font-family: Georgia, serif; }
.th-text { font-size: 16px; line-height: 1.9; color: rgba(255,255,255,.88); font-style: italic; flex: 1; margin-bottom: 32px; font-weight: 300; }
.th-text strong { color: #fff; font-style: normal; }
.th-author { display: flex; align-items: center; gap: 16px; }
.th-author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.15); flex-shrink: 0; }
.th-author strong { display: block; font-size: 15px; font-weight: 700; color: #fff; }
.th-author span   { font-size: 12px; color: rgba(255,255,255,.65); }
.th-stars { color: var(--yellow); font-size: 14px; letter-spacing: 2px; margin-top: 4px; }
.testi-hero-right { background: var(--red); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 36px; gap: 0; }
.th-stat { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 28px 0; }
.th-stat-n { font-size: 44px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.03em; }
.th-stat-l { font-size: 13px; color: rgba(255,255,255,.9); margin-top: 6px; font-weight: 500; }
.th-divider { width: 40px; height: 1px; background: rgba(255,255,255,.3); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 40px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r2); padding: 32px; transition: transform .3s var(--ease), box-shadow .3s; position: relative; }
.testi-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #1F41B4, #FAC94B); border-radius: var(--r2) var(--r2) 0 0; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.09); }
.tc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.tc-top img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; }
.tc-top strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.tc-top span   { font-size: 12px; color: #666; }
.tc-stars { color: #1F41B4; font-size: 12px; letter-spacing: 1.5px; margin-top: 3px; }
.testi-card p { font-size: 14px; color: #444; line-height: 1.85; font-style: italic; font-weight: 300; }
.testi-card p strong { color: var(--ink); font-style: normal; }

/* ════════════════════════════════════════════════
   PLAYER DE VÍDEO — DEPOIMENTOS
════════════════════════════════════════════════ */
.al-video-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 8px;
  width: 100%;
}
.al-video-wrap.al-video-wrap-3 {
  grid-template-columns: repeat(3, 1fr);
}
.al-vt-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
  background: #000;
  width: 100%;
}
.al-vt-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.al-vt-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.al-vt-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}
.al-vt-center-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  z-index: 3;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  pointer-events: none;
  opacity: 0;
  transition: transform .15s ease, opacity .3s;
}
.al-vt-center-icon svg,
.al-vt-center-icon .icon-play,
.al-vt-center-icon .icon-pause { width: 28px; height: 28px; flex-shrink: 0; }
.al-vt-center-icon.flash { transform: translate(-50%,-50%) scale(1); opacity: 1; }
.al-vt-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  padding: 20px 10px 8px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.al-vt-player:hover .al-vt-controls,
.al-vt-player.paused .al-vt-controls { opacity: 1; pointer-events: all; }
.al-vt-progress-wrap {
  position: relative;
  height: 16px;
  display: flex; align-items: center;
  margin-bottom: 4px;
  cursor: pointer;
}
.al-vt-progress-bg {
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.25);
  border-radius: 3px;
  overflow: hidden;
}
.al-vt-progress-buf {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: rgba(255,255,255,.3);
  border-radius: 3px;
  width: 0%;
}
.al-vt-progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--red);
  border-radius: 3px;
  width: 0%;
}
.al-vt-seek {
  position: absolute;
  left: 0; right: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0; padding: 0;
  -webkit-appearance: none;
  z-index: 1;
}
.al-vt-ctrl-row { display: flex; align-items: center; justify-content: space-between; }
.al-vt-ctrl-left { display: flex; align-items: center; gap: 6px; }
.al-vt-ctrl-right { display: flex; align-items: center; }
.al-vt-btn-play, .al-vt-btn-vol, .al-vt-btn-fs {
  background: none; border: none; color: #fff; cursor: pointer;
  padding: 4px; display: flex; align-items: center; justify-content: center;
  opacity: .85; transition: opacity .15s; flex-shrink: 0;
}
.al-vt-btn-play svg, .al-vt-btn-vol svg, .al-vt-btn-fs svg,
.al-vt-btn-play .icon-play, .al-vt-btn-play .icon-pause,
.al-vt-btn-vol .icon-vol, .al-vt-btn-vol .icon-mute { width: 20px; height: 20px; flex-shrink: 0; display: block; }
.al-vt-btn-play:hover, .al-vt-btn-vol:hover, .al-vt-btn-fs:hover { opacity: 1; }
.al-vt-volume-wrap { display: flex; align-items: center; gap: 4px; }
.al-vt-vol-range {
  width: 56px; height: 3px;
  -webkit-appearance: none; appearance: none;
  background: rgba(255,255,255,.3);
  border-radius: 3px; outline: none; cursor: pointer;
}
.al-vt-vol-range::-webkit-slider-thumb { -webkit-appearance: none; width: 11px; height: 11px; border-radius: 50%; background: #fff; cursor: pointer; }
.al-vt-vol-range::-moz-range-thumb { width: 11px; height: 11px; border-radius: 50%; background: #fff; border: none; cursor: pointer; }
.al-vt-time { font-size: 11px; color: rgba(255,255,255,.8); white-space: nowrap; font-family: 'Ubuntu', sans-serif; }

/* ════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════ */
.faq-section { padding: 120px 0; background: var(--bg); }
.faq-layout { display: grid; grid-template-columns: 340px 1fr; gap: 88px; align-items: start; }
.faq-left { position: sticky; top: 88px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; padding: 26px 0; text-align: left; font-family: 'Ubuntu', sans-serif; font-size: 15px; font-weight: 500; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: color .2s; }
.faq-q:hover { color: var(--red); }
.faq-plus { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--border); position: relative; flex-shrink: 0; transition: all .3s var(--ease); }
.faq-plus span { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--ink); border-radius: 2px; transition: all .3s var(--ease); }
.faq-plus span:first-child { width: 12px; height: 2px; }
.faq-plus span:last-child  { width: 2px; height: 12px; }
.faq-q[aria-expanded="true"] .faq-plus { background: var(--red); border-color: var(--red); }
.faq-q[aria-expanded="true"] .faq-plus span { background: #fff; }
.faq-q[aria-expanded="true"] .faq-plus span:last-child { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .3s; }
.faq-a.open { max-height: 240px; padding-bottom: 22px; }
.faq-a p { font-size: 15px; color: #555; line-height: 1.85; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer { background: #080808; }
.footer-main { max-width: 1160px; margin: 0 auto; padding: 56px 40px 48px; display: flex; align-items: flex-start; gap: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.ft-brand { flex: 0 0 320px; padding-right: 48px; border-right: 1px solid rgba(255,255,255,.08); }
.ft-logo { height: 120px; width: auto; margin-bottom: 16px; object-fit: contain; }
.ft-brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 260px; margin-bottom: 24px; }
.ft-socials { display: flex; gap: 8px; }
.ft-soc { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.07); color: rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center; transition: all .2s; border: 1px solid rgba(255,255,255,.08); }
.ft-soc:hover { background: #1F41B4; color: #fff; border-color: #1F41B4; transform: translateY(-2px); }
.ft-nav { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.ft-col { display: flex; flex-direction: column; gap: 10px; padding: 0 0 0 36px; border-left: 1px solid rgba(255,255,255,.08); }
.ft-col strong { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 6px; }
.ft-col a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; line-height: 1.7; }
.ft-col a:hover { color: #fff; }
.footer-bottom { max-width: 1160px; margin: 0 auto; padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,.3); }
.ft-logo-sm { height: 24px; opacity: .15; filter: brightness(0) invert(1); }
.ft-dev-link { color: rgba(255,255,255,.55); font-weight: 600; transition: color .2s; }
.ft-dev-link:hover { color: #25D366; }

/* ════════════════════════════════════════════════
   BALÃO WHATSAPP
════════════════════════════════════════════════ */
.wpp-ball { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 60px; height: 60px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px rgba(37,211,102,.45); transition: transform .3s var(--ease), box-shadow .3s; opacity: 0; pointer-events: none; }
.wpp-ball.show { opacity: 1; pointer-events: auto; animation: wppPulse 3s infinite; }
@keyframes wppPulse { 0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,.45); } 50% { box-shadow: 0 8px 44px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); } }
.wpp-ball:hover { transform: translateY(-4px) scale(1.08); animation: none; box-shadow: 0 16px 40px rgba(37,211,102,.55); }
.wpp-ping { position: absolute; top: 4px; right: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--red); border: 2px solid var(--green); }
.wpp-tip { position: absolute; right: 72px; top: 50%; transform: translateY(-50%); background: var(--ink); color: #fff; font-size: 12px; font-weight: 600; padding: 8px 14px; border-radius: 8px; white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity .2s; }
.wpp-tip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-right: none; border-left-color: var(--ink); }
.wpp-ball:hover .wpp-tip { opacity: 1; }

/* ════════════════════════════════════════════════
   TOPBAR
════════════════════════════════════════════════ */
.topbar { background: linear-gradient(90deg, #1F41B4 0%, #EA4D2F 100%); padding: 10px 0; position: relative; z-index: 1001; }
.topbar-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; gap: 12px; justify-content: center; }
.topbar-icon { font-size: 16px; flex-shrink: 0; }
.topbar-text { font-size: 13px; color: #fff; text-align: center; }
.topbar-text strong { font-weight: 700; }
.topbar-btn { flex-shrink: 0; background: #fff; color: #EA4D2F; font-size: 12px; font-weight: 700; letter-spacing: .04em; padding: 7px 18px; border-radius: 100px; transition: all .2s; white-space: nowrap; }
.topbar-btn:hover { background: #FAC94B; color: #111; transform: translateY(-1px); }
.topbar-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: rgba(255,255,255,.7); font-size: 14px; transition: color .2s; padding: 4px 8px; }
.topbar-close:hover { color: #fff; }
.topbar.hidden { display: none; }

/* ════════════════════════════════════════════════
   MID CTA BAR
════════════════════════════════════════════════ */
.mid-cta-bar { background: #fff; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 32px 0; }
.mid-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.mc-left { display: flex; align-items: center; gap: 16px; }
.mc-avatars { display: flex; }
.mc-avatars img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2.5px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.12); margin-left: -12px; }
.mc-avatars img:first-child { margin-left: 0; }
.mc-left strong { display: block; font-size: 15px; font-weight: 700; color: #111; }
.mc-left span   { font-size: 13px; color: #666; }
.mid-cta-btn { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; background: var(--green); color: #fff; font-size: 14px; font-weight: 700; padding: 14px 28px; border-radius: 100px; transition: background .2s, transform .2s, box-shadow .2s; white-space: nowrap; }
.mid-cta-btn:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 24px var(--green-glow); }

/* ════════════════════════════════════════════════
   CTA PÓS DEPOIMENTOS
════════════════════════════════════════════════ */
.post-testi-cta { background: #111; padding: 56px 0; border-top: 1px solid rgba(255,255,255,.06); }
.ptc-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.ptc-inner p { font-size: 17px; color: rgba(255,255,255,.75); font-style: italic; line-height: 1.75; max-width: 640px; font-weight: 300; }
.ptc-inner p::before { content: '"'; font-size: 28px; color: var(--red); line-height: 0; vertical-align: -8px; margin-right: 4px; }
.ptc-btn { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; background: var(--green); color: #fff; font-size: 14px; font-weight: 700; padding: 16px 28px; border-radius: 100px; transition: background .2s, transform .2s, box-shadow .2s; white-space: nowrap; }
.ptc-btn:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 28px var(--green-glow); }

/* ════════════════════════════════════════════════
   STICKY BAR MOBILE
════════════════════════════════════════════════ */
.sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 997; background: #fff; border-top: 2px solid var(--green); box-shadow: 0 -4px 24px rgba(0,0,0,.15); padding: 12px 20px; }
.sticky-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sb-text strong { display: block; font-size: 14px; font-weight: 700; color: #111; }
.sb-text span   { font-size: 12px; color: #666; }
.sb-btn { flex-shrink: 0; background: var(--green); color: #fff; font-size: 13px; font-weight: 700; padding: 12px 22px; border-radius: 100px; white-space: nowrap; transition: background .2s; }
.sb-btn:hover { background: var(--green2); }

/* ════════════════════════════════════════════════
   PLANOS
════════════════════════════════════════════════ */
.planos-section { background: #0D0D0D; padding: 120px 0; }
.planos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; margin-bottom: 40px; }
.plano-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 24px; padding: 40px 32px; display: flex; flex-direction: column; gap: 16px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; position: relative; }
.plano-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.2); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.plano-destaque { background: #fff; border-color: transparent; transform: scale(1.04); box-shadow: 0 20px 64px rgba(0,0,0,.5); }
.plano-destaque:hover { transform: scale(1.04) translateY(-6px); }
.plano-crown { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: #111; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 7px 20px; border-radius: 100px; white-space: nowrap; }
.plano-icon { font-size: 36px; }
.plano-name { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.2; }
.plano-destaque .plano-name { color: #111; }
.plano-desc { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.75; }
.plano-destaque .plano-desc { color: #555; }
.plano-list { list-style: none; display: flex; flex-direction: column; gap: 10px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.08); flex: 1; }
.plano-destaque .plano-list { border-color: #eee; }
.plano-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.5; }
.plano-destaque .plano-list li { color: #444; }
.plano-list li::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; background: #1F41B4; color: #fff; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.plano-destaque .plano-list li::before { background: var(--green); }
.plano-btn { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; font-weight: 700; padding: 15px; border-radius: 12px; text-align: center; transition: all .25s var(--ease); margin-top: 8px; }
.plano-btn-ghost { background: transparent; border: 2px solid rgba(37,211,102,.4); color: var(--green); }
.plano-btn-ghost:hover { background: var(--green); color: #fff; border-color: var(--green); transform: translateY(-2px); }
.plano-btn-primary { background: var(--green); color: #fff; border: 2px solid transparent; }
.plano-btn-primary:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 10px 28px var(--green-glow); }
.plano-btn-wpp { background: var(--green); color: #fff; border: 2px solid transparent; }
.plano-btn-wpp:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 10px 28px var(--green-glow); }
.planos-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 32px 40px; flex-wrap: wrap; }
.planos-cta-text { display: flex; align-items: center; gap: 20px; flex: 1; }
.planos-cta-icon { font-size: 36px; flex-shrink: 0; }
.planos-cta-text strong { display: block; font-size: 17px; font-weight: 700; color: #FAC94B; margin-bottom: 6px; }
.planos-cta-text p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ════════════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════════ */
.cta-section { position: relative; background: #0D0D0D; border-top: 4px solid var(--red); overflow: hidden; }
.cta-bg-photo { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1543269865-cbf427effbad?w=1600&q=80&fit=crop') center / cover no-repeat; opacity: 0.08; pointer-events: none; }
.cta-inner-grid { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; padding: 100px 40px; display: grid; grid-template-columns: 1fr 420px; gap: 72px; align-items: center; }
.cta-left { display: flex; flex-direction: column; }
.cta-h2 { font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; color: #fff; margin-bottom: 18px; }
.cta-h2 em { font-style: italic; color: var(--yellow); }
.cta-body { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 40px; max-width: 440px; }
.cta-contacts { display: flex; flex-direction: column; gap: 12px; }
.cta-contact-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; transition: background .2s, border-color .2s, transform .2s; }
.cta-contact-item:not(.no-link):hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); transform: translateX(4px); }
.no-link { cursor: default; }
.cci-icon { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.wpp-icon-bg   { background: rgba(37,211,102,.2);  color: var(--green); }
.email-icon-bg { background: rgba(31,65,180,.25);  color: #6b8eff; }
.clock-icon-bg { background: rgba(250,201,75,.15); color: var(--yellow); }
.cci-label { display: block; font-size: 11px; color: rgba(255,255,255,.4); margin-bottom: 2px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.cta-contact-item strong { display: block; font-size: 14px; font-weight: 600; color: #fff; }
.cta-form-card { background: #fff; border-radius: 28px; box-shadow: 0 24px 80px rgba(0,0,0,.5); padding: 36px; }
.cfc-header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.cfc-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.cfc-sub   { font-size: 13px; color: var(--muted); }

/* ════════════════════════════════════════════════
   RESPONSIVO
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 32px 64px; }
  .hero-flag { clip-path: polygon(0 65%, 100% 45%, 100% 100%, 0 100%); opacity: .4; width: 100%; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(13,13,13,.85) 0%, rgba(13,13,13,.6) 100%); }
  .hero::after { display: none; }
  .hero-form-card { max-width: 520px; animation: none; }
  .hero-h1 { font-size: clamp(2.2rem,6vw,3.2rem); }
  .prob-layout { grid-template-columns: 1fr; gap: 40px; }
  .prob-left { position: static; }
  .diff-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); max-width: 860px; }
  .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .who-left { position: static; }
  .who-section::before { opacity: .15; width: 100%; }
  .testi-hero { grid-template-columns: 1fr; }
  .testi-hero-img { height: 280px; }
  .testi-hero-right { flex-direction: row; padding: 28px 36px; gap: 0; }
  .th-divider { width: 1px; height: 36px; }
  .th-stat { padding: 16px 24px; }
  .th-stat-n { font-size: 32px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .al-video-wrap,
  .al-video-wrap.al-video-wrap-3 { grid-template-columns: 1fr 1fr; }
  .planos-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 40px; }
  .plano-destaque { transform: none; }
  .plano-destaque:hover { transform: translateY(-6px); }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }
  .cta-inner-grid { grid-template-columns: 1fr; gap: 48px; padding: 72px 32px; }
  .cta-form-card { max-width: 520px; margin: 0 auto; }
  .footer-main { flex-direction: column; gap: 0; }
  .ft-brand { flex: none; width: 100%; padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 32px; margin-bottom: 0; }
  .ft-nav { width: 100%; grid-template-columns: repeat(3,1fr); }
  .ft-col { padding-top: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-inner { height: 72px; padding: 0 20px; }
  .nav-logo img { height: 100px; }
  .topbar-text { font-size: 11px; }
  .topbar-btn  { display: none; }
  .topbar-inner { padding: 0 48px 0 16px; gap: 8px; }
  .hero-inner { padding: 36px 20px 56px; gap: 32px; }
  .hero-h1 { font-size: 2rem; }
  .hero-sub { font-size: 14px; }
  .hero-pill { font-size: 11px; padding: 8px 16px; margin-bottom: 20px; }
  .hero-proof { flex-wrap: wrap; gap: 12px; }
  .proof-avatars img { width: 34px; height: 34px; }
  .cert-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
  .numbers-inner { flex-wrap: wrap; gap: 28px; justify-content: center; padding: 0 20px; }
  .num-div { display: none; }
  .num-item { min-width: 120px; }
  .nv { font-size: 2rem; }
  .problem-section { padding: 72px 0; }
  .prob-layout { gap: 32px; }
  .pain-card { padding: 20px; gap: 14px; }
  .pain-em { font-size: 28px; }
  .mid-cta-inner { flex-direction: column; text-align: center; gap: 20px; }
  .mc-left { flex-direction: column; gap: 12px; }
  .diff-section { padding: 72px 0; }
  .diff-grid { grid-template-columns: 1fr; gap: 12px; }
  .dc { padding: 24px 20px; }
  .how-section { padding: 72px 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .step-card { padding: 24px 20px; }
  .step-icon { font-size: 36px; }
  .who-section { padding: 72px 0; }
  .who-inner   { padding: 72px 20px; }
  .who-section::before { display: none; }
  .who-numbers { gap: 20px; }
  .who-item { padding: 20px 0; gap: 14px; }
  .sh2.white { font-size: 2rem; }
  .testi-section { padding: 72px 0; }
  .testi-hero { grid-template-columns: 1fr; border-radius: 20px; }
  .testi-hero-img { height: 240px; }
  .testi-hero-left { padding: 28px 24px; }
  .th-quote { font-size: 56px; }
  .th-text  { font-size: 14px; line-height: 1.8; }
  .testi-hero-right { flex-direction: column; padding: 24px; gap: 0; }
  .th-divider { width: 60px; height: 1px; }
  .th-stat { padding: 16px 0; }
  .th-stat-n { font-size: 36px; }
  .testi-grid { grid-template-columns: 1fr; gap: 12px; }
  .testi-card { padding: 24px 20px; }
  .al-video-wrap,
  .al-video-wrap.al-video-wrap-3 { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .al-vt-vol-range { width: 40px; }
  .ptc-inner { flex-direction: column; text-align: center; gap: 24px; }
  .ptc-inner p { font-size: 15px; }
  .planos-section { padding: 72px 0; }
  .planos-grid { grid-template-columns: 1fr; max-width: 100%; margin-bottom: 24px; }
  .plano-card { padding: 32px 24px; }
  .planos-cta { flex-direction: column; text-align: center; padding: 24px 20px; }
  .planos-cta-text { flex-direction: column; gap: 12px; }
  .faq-section { padding: 72px 0; }
  .faq-layout  { gap: 32px; }
  .faq-q       { font-size: 14px; padding: 20px 0; }
  .cta-section { border-top-width: 3px; }
  .cta-inner-grid { padding: 56px 20px; gap: 40px; }
  .cta-h2   { font-size: clamp(1.8rem,7vw,2.8rem); }
  .cta-body { font-size: 14px; margin-bottom: 28px; }
  .cta-contacts { gap: 10px; }
  .cta-contact-item { padding: 14px 16px; }
  .cci-icon { width: 38px; height: 38px; }
  .cta-form-card { padding: 28px 20px; border-radius: 20px; }
  .cfc-title { font-size: 15px; }
  .footer-main { flex-direction: column !important; padding: 40px 20px 32px !important; gap: 0 !important; }
  .ft-brand { flex: none !important; width: 100% !important; padding-right: 0 !important; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.08) !important; padding-bottom: 28px !important; margin-bottom: 0 !important; }
  .ft-logo { height: 120px !important; }
  .ft-nav { width: 100% !important; display: flex !important; flex-direction: column !important; gap: 0 !important; }
  .ft-col { padding-left: 0 !important; padding-right: 0 !important; padding-top: 24px !important; padding-bottom: 24px !important; border-left: none !important; border-top: 1px solid rgba(255,255,255,.08) !important; }
  .footer-bottom { padding: 20px 20px 28px !important; flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 8px !important; }
  .sticky-bar { display: block; }
  body { padding-bottom: 72px; }
  .wpp-ball { bottom: 84px; }
  .diff-cta { flex-direction: column; text-align: center; padding: 24px 20px; gap: 16px; }
  .diff-cta-btn { width: 100%; justify-content: center; }
  .mid-cta-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .topbar-close { right: 8px; }
  .nav-inner { padding: 0 16px; }
  .nav-logo img { height: 100px; }
  .hero-inner { padding: 28px 16px 48px; }
  .hero-h1 { font-size: 1.8rem; }
  .cert-pills { gap: 6px; }
  .cert-pills span { font-size: 11px; padding: 5px 12px; }
  .hero-form-card { padding: 24px 18px; border-radius: 20px; }
  .hfc-logo { height: 38px; }
  .hfc-title { font-size: 13px; }
  .field input, .field select { padding: 11px 14px; font-size: 13px; }
  .form-submit { font-size: 13px; padding: 14px; }
  .diff-section, .how-section, .who-section, .testi-section, .planos-section, .faq-section { padding: 56px 0; }
  .problem-section, .numbers-bar { padding: 56px 0; }
  .testi-hero-left { padding: 20px 16px; }
  .testi-hero-img  { height: 200px; }
  .step-card { padding: 20px 16px; }
  .ft-nav { grid-template-columns: 1fr 1fr; }
  .footer-main { padding: 40px 16px 32px !important; }
  .footer-bottom { padding: 20px 16px 28px !important; }
  .cta-inner-grid { padding: 48px 16px; }
  .cta-contact-item strong { font-size: 13px; }
  .numbers-inner { padding: 0 16px; }
  .who-inner { padding: 56px 16px; }
  .mid-cta-bar .container { padding: 0 16px; }
  .wpp-ball { width: 52px; height: 52px; bottom: 80px; right: 16px; }
  .wpp-tip  { display: none; }
  .al-vt-vol-range { display: none; }
}













/* ════════════════════════════════════════════════
   TELEFONE INTERNACIONAL — Instituto Stephanie Lich
   Adicionar ao final de style.css
════════════════════════════════════════════════ */

/* ── Wrapper principal ──────────────────────── */
.isl-phone-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  border: 2px solid var(--border);
  border-radius: var(--r);
  overflow: visible;
  transition: border-color .2s, box-shadow .2s, background .2s;
  background: var(--bg);
  /* garante altura igual ao campo original */
  min-height: 48px;
}
.isl-phone-wrap:focus-within {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,211,102,.12);
}
.isl-phone-wrap.error {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(234,77,47,.12) !important;
}

/* ── Botão de seleção de país ───────────────── */
.isl-ddi-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: none;
  border: none;
  border-right: 1.5px solid var(--border);
  cursor: pointer;
  font-family: 'Ubuntu', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  min-width: 92px;
  flex-shrink: 0;
  transition: background .15s;
  border-radius: calc(var(--r) - 2px) 0 0 calc(var(--r) - 2px);
  align-self: stretch;
}
.isl-ddi-btn:hover { background: rgba(0,0,0,.04); }
.isl-ddi-btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -2px;
  border-radius: calc(var(--r) - 2px) 0 0 calc(var(--r) - 2px);
}

/* ── Elementos internos do botão ────────────── */
.isl-flag     { font-size: 20px; line-height: 1; flex-shrink: 0; }
.isl-ddi-code { font-size: 13px; color: var(--mid); }
.isl-chevron  { margin-left: 2px; font-size: 11px; color: var(--muted); transition: transform .2s var(--ease); }
.isl-chevron.open { transform: rotate(180deg); }

/* ── Input de número — override do .field input ── */
.isl-phone-wrap .isl-number,
.field .isl-phone-wrap .isl-number,
.isl-phone-wrap input.isl-number {
  flex: 1 1 0;
  min-width: 0;
  width: auto !important;
  /* zera tudo que o .field input impõe */
  border: none !important;
  border-radius: 0 calc(var(--r) - 2px) calc(var(--r) - 2px) 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  /* tipografia e espaçamento corretos */
  padding: 13px 16px !important;
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  align-self: stretch;
  /* remove appearance do <select> se aplicar */
  appearance: none;
  -webkit-appearance: none;
}
.isl-phone-wrap .isl-number::placeholder { color: var(--muted); }
/* impede o focus-within do input de re-aplicar borda */
.isl-phone-wrap .isl-number:focus {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* ── Dropdown ───────────────────────────────── */
.isl-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  box-shadow: 0 12px 40px rgba(0,0,0,.14), 0 2px 8px rgba(0,0,0,.06);
  z-index: 9999;
  overflow: hidden;
  max-height: 320px;
  display: flex;
  flex-direction: column;
}
.isl-dropdown.open {
  animation: islDrop .18s var(--ease);
}
@keyframes islDrop {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Busca dentro do dropdown ───────────────── */
.isl-search-wrap {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
/* override do .field input para o campo de busca */
.isl-dropdown .isl-search,
.isl-search-wrap .isl-search,
.isl-search-wrap input.isl-search {
  width: 100% !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r) !important;
  padding: 8px 12px !important;
  font-size: 13px;
  font-family: 'Ubuntu', sans-serif;
  background: var(--bg) !important;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: none !important;
}
.isl-dropdown .isl-search:focus,
.isl-search-wrap input.isl-search:focus {
  border-color: var(--green) !important;
  box-shadow: 0 0 0 3px rgba(37,211,102,.1) !important;
  background: #fff !important;
}

/* ── Lista de opções ────────────────────────── */
.isl-list {
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.isl-list::-webkit-scrollbar { width: 4px; }
.isl-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.isl-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  color: var(--ink);
  transition: background .1s;
  border-bottom: 0.5px solid #f0f0f0;
}
.isl-option:last-child { border-bottom: none; }
.isl-option:hover     { background: var(--bg); }
.isl-option.selected  { background: rgba(37,211,102,.07); }

.isl-opt-name { flex: 1; font-size: 13px; }
.isl-opt-ddi  { font-size: 12px; font-weight: 700; color: var(--mid); }

.isl-divider {
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
  border-bottom: 0.5px solid var(--border);
}

/* ── Hint de validação ──────────────────────── */
.isl-hint {
  display: block;
  font-size: 12px;
  margin-top: 5px;
  min-height: 16px;
  line-height: 1.4;
  transition: color .2s;
}
.isl-hint.ok   { color: var(--green2); }
.isl-hint.err  { color: var(--red); }
.isl-hint.info { color: var(--muted); }

/* ── Responsivo mobile ──────────────────────── */
@media (max-width: 480px) {
  .isl-ddi-btn  { min-width: 80px; padding: 0 10px; }
  .isl-ddi-code { font-size: 12px; }
  .isl-flag     { font-size: 18px; }
  .isl-phone-wrap .isl-number { padding: 11px 12px !important; font-size: 13px; }
  .isl-dropdown { max-height: 260px; }
  .isl-option   { padding: 9px 12px; }
}