/* ============================================================
   DO CLIQUE AO PREJUÍZO — Landing Page Anti-Phishing
   Jefferson Baptista Consultoria | jeffersonbb.com.br
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Mono:wght@400;600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── Variáveis ─────────────────────────────────────── */
:root {
    --preto:       #050810;
    --navy:        #080f1e;
    --navy2:       #0d1829;
    --azul:        #0f2444;
    --borda:       #1a2e4a;
    --borda-clara: #233a5c;
    --verm:        #e8003d;
    --verm-hover:  #ff1a54;
    --verm-glow:   rgba(232,0,61,.22);
    --ouro:        #c8a84b;
    --ouro-claro:  #e2c97e;
    --branco:      #f0f6ff;
    --cinza:       #8094b0;
    --cinza-claro: #b0c0d8;
    --verde:       #00d68f;
    --fonte:       'Outfit', sans-serif;
    --mono:        'IBM Plex Mono', monospace;
    --hero:        'Bebas Neue', sans-serif;
    --t:           all 0.22s ease;
    --radius:      10px;
    --radius-lg:   14px;
    --sombra:      0 20px 60px rgba(0,0,0,.55);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--fonte); background: var(--preto); color: var(--branco); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: var(--ouro); text-decoration: none; transition: var(--t); }
a:hover { color: var(--ouro-claro); }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--fonte); }
::selection { background: var(--verm-glow); color: var(--verm-hover); }

/* ── Layout ─────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }

.grid-bg {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image:
        linear-gradient(rgba(15,36,68,.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,36,68,.35) 1px, transparent 1px);
    background-size: 42px 42px;
}

/* ── Seção genérica ─────────────────────────────────── */
.secao { padding: 5rem 0; position: relative; overflow: hidden; }
.secao-tag { font-family: var(--mono); font-size: .68rem; color: var(--verm); letter-spacing: .14em; text-transform: uppercase; margin-bottom: .5rem; }
.secao-titulo { font-family: var(--hero); font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: .02em; color: var(--branco); line-height: 1; }
.secao-sub { font-size: .92rem; color: var(--cinza); margin-top: .5rem; line-height: 1.7; }

/* ── Reveal animation ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: .9rem 1.5rem;
    background: rgba(5,8,16,.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(26,46,74,.5);
    transition: background .3s ease;
    gap: 1rem;
}
.nav.scrolled { background: rgba(5,8,16,.98); }

.nav-logo { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.nav-logo-icone { font-size: 1.1rem; }
.nav-logo-txt { font-family: var(--mono); font-size: .78rem; color: var(--cinza); white-space: nowrap; }
.nav-logo-txt strong { color: var(--branco); }

.nav-links { display: flex; align-items: center; gap: 2rem; flex: 1; justify-content: center; }
.nav-links a { font-size: .82rem; color: var(--cinza); font-weight: 500; white-space: nowrap; }
.nav-links a:hover { color: var(--branco); }

.nav-cta { flex-shrink: 0; }

.nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; padding: .4rem;
    flex-shrink: 0;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--cinza); border-radius: 2px; transition: var(--t); }
.nav-hamburger.aberto span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.aberto span:nth-child(2) { opacity: 0; }
.nav-hamburger.aberto span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Menu mobile */
.nav-mobile {
    display: none; position: fixed;
    top: 57px; left: 0; right: 0; z-index: 190;
    background: rgba(8,15,30,.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--borda);
    padding: 1.2rem 1.5rem 1.5rem;
    flex-direction: column; gap: 1rem;
}
.nav-mobile.aberto { display: flex; }
.nav-mobile a { font-size: .9rem; color: var(--cinza-claro); font-weight: 500; padding: .5rem 0; border-bottom: 1px solid var(--borda); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--branco); }
.nav-mobile .btn-verm { color: #fff; border: none; padding: .7rem; margin-top: .4rem; text-align: center; }

/* ══════════════════════════════════════════════════════
   BOTÕES
   ══════════════════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: .4rem; padding: .72rem 1.4rem; border-radius: var(--radius);
    font-weight: 700; font-size: .88rem; border: none; transition: var(--t);
    white-space: nowrap; text-align: center;
}
.btn-verm { background: var(--verm); color: #fff; box-shadow: 0 4px 20px rgba(232,0,61,.3); }
.btn-verm:hover { background: var(--verm-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,0,61,.45); }
.btn-ghost { background: transparent; color: var(--branco); border: 1px solid var(--borda-clara); }
.btn-ghost:hover { border-color: var(--ouro); color: var(--ouro); }
.btn-bloco { width: 100%; }
.btn-lg { padding: .85rem 1.8rem; font-size: .95rem; }

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}
.hero-glow-r {
    position: absolute; top: -15%; right: -8%;
    width: clamp(400px, 55vw, 700px); height: clamp(400px, 55vw, 700px);
    background: radial-gradient(circle, rgba(232,0,61,.11) 0%, transparent 70%);
    pointer-events: none;
}
.hero-glow-l {
    position: absolute; bottom: -10%; left: -5%;
    width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
    background: radial-gradient(circle, rgba(15,36,68,.45) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }

/* Tag piscante */
.alerta-tag {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(232,0,61,.09); border: 1px solid rgba(232,0,61,.28);
    color: var(--verm-hover); padding: .3rem .8rem; border-radius: 4px;
    font-family: var(--mono); font-size: .68rem; font-weight: 600;
    letter-spacing: .07em; text-transform: uppercase; margin-bottom: 1.2rem;
    animation: pulse-borda 2.2s ease-in-out infinite;
}
.alerta-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--verm); animation: blink 1.3s ease-in-out infinite; }
@keyframes pulse-borda { 0%,100%{border-color:rgba(232,0,61,.28);box-shadow:none} 50%{border-color:rgba(232,0,61,.65);box-shadow:0 0 14px rgba(232,0,61,.18)} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.15} }

.hero-h1 {
    font-family: var(--hero);
    font-size: clamp(3.2rem, 6.5vw, 6rem);
    line-height: .93; letter-spacing: .02em; margin-bottom: 1.2rem;
}
.hero-h1 .l1 { color: var(--branco); display: block; }
.hero-h1 .l2 { color: var(--verm); display: block; }
.hero-h1 .l3 { color: transparent; -webkit-text-stroke: 1.5px rgba(240,246,255,.18); display: block; }

.hero-desc { font-size: clamp(.88rem, 1.8vw, 1rem); color: var(--cinza); line-height: 1.78; margin-bottom: 1.8rem; max-width: 480px; }
.hero-desc strong { color: var(--branco); }

.hero-acoes { display: flex; gap: .85rem; flex-wrap: wrap; }

/* ── Painel de ataque ── */
.painel {
    background: var(--navy2); border: 1px solid var(--borda);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--sombra);
    animation: float 5.5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.painel-header {
    background: rgba(232,0,61,.07); border-bottom: 1px solid rgba(232,0,61,.14);
    padding: .7rem 1rem; display: flex; align-items: center; gap: .5rem;
    font-family: var(--mono); font-size: .65rem; color: var(--verm);
}
.dots { display: flex; gap: .35rem; margin-right: .3rem; }
.dot  { width: 9px; height: 9px; border-radius: 50%; }
.dot-r{background:#ff5f56;} .dot-y{background:#ffbd2e;} .dot-g{background:#27c93f;}

.painel-body { padding: 1.2rem; font-family: var(--mono); font-size: .7rem; line-height: 1.5; }
.log { display: flex; gap: .5rem; margin-bottom: .55rem; align-items: flex-start; }
.log-h  { color: var(--cinza); flex-shrink: 0; font-size: .62rem; padding-top: .12rem; }
.log-t  { font-size: .58rem; padding: .12rem .38rem; border-radius: 3px; font-weight: 700; flex-shrink: 0; }
.t-info { background:rgba(15,36,68,.6);    color:var(--cinza); }
.t-warn { background:rgba(255,189,0,.14);  color:#ffd166; }
.t-crit { background:rgba(232,0,61,.2);    color:#ff7fa0; }
.t-ok   { background:rgba(0,214,143,.14);  color:var(--verde); }
.log-msg { color: var(--cinza); flex: 1; min-width: 0; word-break: break-word; }
.log-msg em  { color: var(--branco); font-style: normal; }
.log-msg .r  { color: var(--verm-hover); }

.painel-risco {
    margin-top: 1.1rem; padding: .85rem;
    background: rgba(232,0,61,.04); border: 1px solid rgba(232,0,61,.1); border-radius: 8px;
}
.risco-label { display: flex; justify-content: space-between; font-size: .63rem; color: var(--cinza); margin-bottom: .45rem; }
.risco-label strong { color: var(--verm-hover); }
.risco-track { height: 6px; background: rgba(255,255,255,.05); border-radius: 3px; overflow: hidden; }
.risco-fill  { height: 100%; width: 0; border-radius: 3px; background: linear-gradient(90deg, var(--verm), var(--verm-hover)); transition: width 1.6s cubic-bezier(.4,0,.2,1); }

/* ══════════════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════════════ */
.secao-stats { background: var(--navy); border-top: 1px solid var(--borda); border-bottom: 1px solid var(--borda); }

.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; margin-top: 2.5rem; }
.stat-card {
    background: var(--navy2); border: 1px solid var(--borda); border-radius: var(--radius-lg);
    padding: 1.6rem 1.2rem; text-align: center; position: relative; overflow: hidden; transition: var(--t);
}
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--verm),transparent); opacity: 0; transition: var(--t); }
.stat-card:hover { border-color: rgba(232,0,61,.28); transform: translateY(-4px); }
.stat-card:hover::before { opacity: 1; }
.stat-num { font-family: var(--hero); font-size: clamp(2.4rem,4vw,3.6rem); line-height: 1; color: var(--verm); margin-bottom: .3rem; letter-spacing: .01em; }
.stat-num sup { font-size: 50%; }
.stat-desc { font-size: .78rem; color: var(--cinza); line-height: 1.55; }
.stat-fonte { font-size: .6rem; color: rgba(128,148,176,.42); margin-top: .55rem; font-family: var(--mono); }

/* Gráfico barras */
.chart {
    margin-top: 2.2rem;
    background: var(--navy2); border: 1px solid var(--borda); border-radius: var(--radius-lg); padding: 1.8rem;
}
.chart-titulo { font-family: var(--mono); font-size: .75rem; color: var(--cinza); margin-bottom: 1.4rem; }
.chart-titulo strong { color: var(--branco); }
.chart-item { margin-bottom: .9rem; }
.chart-item:last-child { margin-bottom: 0; }
.chart-info { display: flex; justify-content: space-between; margin-bottom: .38rem; font-size: .8rem; }
.chart-label { color: var(--branco); }
.chart-val   { color: var(--verm); font-weight: 700; font-family: var(--mono); }
.chart-track { height: 8px; background: rgba(255,255,255,.04); border-radius: 4px; overflow: hidden; }
.chart-fill  { height: 100%; width: 0; border-radius: 4px; background: linear-gradient(90deg,var(--verm),#ff6b8a); transition: width 1.2s cubic-bezier(.4,0,.2,1); }

/* ══════════════════════════════════════════════════════
   DICAS
   ══════════════════════════════════════════════════════ */
.dicas-intro { max-width: 600px; margin-bottom: 3rem; }
.dicas-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(200,168,75,.08); border: 1px solid rgba(200,168,75,.2);
    color: var(--ouro); padding: .28rem .72rem; border-radius: 4px;
    font-family: var(--mono); font-size: .66rem; margin-bottom: .7rem;
}

.dicas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }

.dica {
    background: var(--navy2); border: 1px solid var(--borda); border-radius: var(--radius-lg);
    padding: 1.6rem; position: relative; overflow: hidden; transition: var(--t);
}
.dica:hover { border-color: rgba(200,168,75,.28); }
.dica-n    { font-family: var(--hero); font-size: 3rem; line-height: 1; color: rgba(200,168,75,.09); margin-bottom: -.2rem; }
.dica-i    { font-size: 1.6rem; margin-bottom: .65rem; }
.dica-h    { font-size: .95rem; font-weight: 700; color: var(--branco); margin-bottom: .5rem; }
.dica-p    { font-size: .82rem; color: var(--cinza); line-height: 1.72; }
.dica-p strong { color: var(--ouro-claro); }
.dica-code {
    margin-top: .9rem; background: rgba(0,0,0,.3);
    border: 1px solid var(--borda); border-left: 3px solid var(--verm);
    border-radius: 0 6px 6px 0; padding: .65rem .9rem;
    font-family: var(--mono); font-size: .66rem; color: var(--verm-hover); line-height: 1.65;
}
.dica-code .c { color: var(--cinza); }

/* Card CTA nas dicas */
.dica-cta {
    background: linear-gradient(135deg, rgba(232,0,61,.07), rgba(13,24,41,.9));
    border-color: rgba(232,0,61,.22);
    display: flex; flex-direction: column; justify-content: center;
}

/* ══════════════════════════════════════════════════════
   VÍDEO
   ══════════════════════════════════════════════════════ */
.secao-video { background: var(--navy); border-top: 1px solid var(--borda); border-bottom: 1px solid var(--borda); }

.video-inner { display: grid; grid-template-columns: 1fr 1.35fr; gap: 4rem; align-items: center; }
.video-txt h2 { font-family: var(--hero); font-size: clamp(2rem,4vw,3rem); letter-spacing: .02em; line-height: 1; color: var(--branco); margin-bottom: 1.1rem; }
.video-txt p  { font-size: .88rem; color: var(--cinza); line-height: 1.78; margin-bottom: .8rem; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: .55rem; margin-top: 1.3rem; }
.checklist li { display: flex; align-items: flex-start; gap: .6rem; font-size: .84rem; color: var(--cinza); }
.check { color: var(--verde); flex-shrink: 0; margin-top: .1rem; }

.video-wrap {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    background: var(--navy2); border: 1px solid var(--borda);
    aspect-ratio: 16/9; box-shadow: var(--sombra);
}
.video-placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem;
    background: linear-gradient(135deg,#050810,#0d1829);
    cursor: pointer; transition: var(--t);
}
.video-placeholder:hover .play { transform: scale(1.1); box-shadow: 0 0 38px rgba(232,0,61,.5); }
.play { width: 68px; height: 68px; background: var(--verm); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; transition: var(--t); box-shadow: 0 0 24px rgba(232,0,61,.3); }
.video-meta { text-align: center; }
.video-meta strong { display: block; color: var(--branco); font-size: .9rem; margin-bottom: .2rem; }
.video-meta span { font-family: var(--mono); font-size: .72rem; color: var(--cinza); }

/* ══════════════════════════════════════════════════════
   INSTRUTOR
   ══════════════════════════════════════════════════════ */
.instrutor-inner { display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center; max-width: 900px; margin: 0 auto; }
.instrutor-foto-wrap { flex-shrink: 0; }
.instrutor-foto {
    width: 160px; height: 160px; border-radius: 50%;
    object-fit: cover; border: 3px solid var(--borda);
    box-shadow: 0 0 40px rgba(232,0,61,.12);
    background: var(--navy2); display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.instrutor-cargo { font-family: var(--mono); font-size: .7rem; color: var(--ouro); margin-bottom: .5rem; letter-spacing: .04em; }
.instrutor-nome  { font-family: var(--hero); font-size: clamp(1.8rem,3.5vw,2.6rem); letter-spacing: .02em; color: var(--branco); margin-bottom: .9rem; }
.instrutor-bio   { font-size: .87rem; color: var(--cinza); line-height: 1.78; margin-bottom: .8rem; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .6rem; }
.tag { background: var(--navy2); border: 1px solid var(--borda); color: var(--cinza); font-size: .68rem; padding: .22rem .62rem; border-radius: 4px; font-family: var(--mono); }

/* ══════════════════════════════════════════════════════
   CONTATO
   ══════════════════════════════════════════════════════ */
.secao-contato { background: var(--navy); border-top: 1px solid var(--borda); }
.secao-contato::before {
    content: ''; position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 360px;
    background: radial-gradient(ellipse, rgba(232,0,61,.06) 0%, transparent 70%);
    pointer-events: none;
}

.contato-intro { text-align: center; margin-bottom: 2.5rem; }
.contato-intro h2 { font-family: var(--hero); font-size: clamp(2.2rem,5vw,3.8rem); letter-spacing: .02em; line-height: 1; margin-bottom: .8rem; }
.contato-intro h2 em { color: var(--verm); font-style: normal; }
.contato-intro p { font-size: .92rem; color: var(--cinza); max-width: 520px; margin: 0 auto; line-height: 1.78; }

.form-box { background: var(--navy2); border: 1px solid var(--borda); border-radius: var(--radius-lg); padding: 2.2rem; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grp { margin-bottom: 1.1rem; }
.form-lbl { display: block; font-size: .68rem; font-weight: 700; color: rgba(128,148,176,.85); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .38rem; }
.form-inp, .form-sel, .form-area {
    width: 100%; background: rgba(0,0,0,.25); border: 1px solid var(--borda); border-radius: var(--radius);
    color: var(--branco); padding: .68rem .95rem; font-family: var(--fonte); font-size: .87rem;
    outline: none; transition: var(--t); -webkit-appearance: none; appearance: none;
}
.form-inp:focus, .form-sel:focus, .form-area:focus { border-color: var(--verm); box-shadow: 0 0 0 3px rgba(232,0,61,.1); }
.form-inp::placeholder { color: rgba(128,148,176,.42); }
.form-sel option { background: var(--navy2); }
.form-area { resize: vertical; min-height: 95px; }

.btn-submit {
    width: 100%; padding: .9rem;
    background: var(--verm); color: #fff; border: none;
    border-radius: var(--radius); font-family: var(--fonte); font-size: .95rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: .45rem;
    transition: var(--t); box-shadow: 0 4px 20px rgba(232,0,61,.3);
}
.btn-submit:hover { background: var(--verm-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,0,61,.42); }

.form-sucesso { display: none; text-align: center; padding: 1.5rem; background: rgba(0,214,143,.07); border: 1px solid rgba(0,214,143,.2); border-radius: var(--radius); color: var(--verde); font-size: .9rem; margin-top: 1rem; }

.contato-direto { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.2rem; margin-top: 2.2rem; }
.contato-item { display: flex; align-items: center; gap: .45rem; font-size: .82rem; color: var(--cinza); }
.contato-item a { color: var(--ouro); }
.contato-item a:hover { color: var(--ouro-claro); }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer {
    background: var(--preto); border-top: 1px solid var(--borda);
    padding: 1.8rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-family: var(--mono); font-size: .68rem; color: rgba(128,148,176,.38); line-height: 1.7; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-links a { font-family: var(--mono); font-size: .68rem; color: rgba(128,148,176,.38); }
.footer-links a:hover { color: var(--cinza); }

/* ══════════════════════════════════════════════════════
   RESPONSIVO — TABLET (< 1024px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner { gap: 2.5rem; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .dicas-grid { grid-template-columns: repeat(2,1fr); }
    .video-inner { gap: 2.5rem; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVO — MOBILE (< 768px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Navbar */
    .nav { padding: .8rem 1rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    /* Seções */
    .secao { padding: 3.5rem 0; }

    /* Hero */
    .hero { padding: 5.5rem 0 3rem; min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.2rem; }
    .hero-desc { max-width: 100%; }
    .hero-acoes { flex-direction: column; }
    .hero-acoes .btn { width: 100%; justify-content: center; }
    .painel { animation: none; } /* sem flutuação em mobile */

    /* Stats */
    .stats-grid { grid-template-columns: 1fr 1fr; gap: .85rem; }
    .stat-card { padding: 1.2rem .9rem; }

    /* Dicas */
    .dicas-grid { grid-template-columns: 1fr; }

    /* Vídeo */
    .video-inner { grid-template-columns: 1fr; gap: 2rem; }

    /* Instrutor */
    .instrutor-inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
    .instrutor-foto  { margin: 0 auto; }
    .tags { justify-content: center; }

    /* Contato */
    .form-row2 { grid-template-columns: 1fr; }
    .form-box  { padding: 1.5rem; }
    .contato-direto { flex-direction: column; align-items: center; gap: .8rem; }

    /* Footer */
    .footer { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVO — CELULAR PEQUENO (< 480px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .container, .container-sm { padding: 0 1rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-num { font-size: 2.8rem; }
    .hero-h1 { font-size: 2.8rem; }
    .painel-body { font-size: .65rem; padding: 1rem; }
    .log { gap: .4rem; }
    .form-box { padding: 1.2rem; }
    .nav-logo-txt { display: none; }
}

/* ══════════════════════════════════════════════════════
   ACESSIBILIDADE
   ══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right { transition: none; }
    .painel { animation: none; }
    .alerta-tag { animation: none; }
    .alerta-dot { animation: none; }
}


