/* ============================================================
   ARMAMENTO E TIRO — Landpage de captura
   Identidade Bandeirante PREMIUM (preto + acento dourado, 2026-05-29).
   ============================================================ */

:root {
    /* PALETA OFICIAL — alinhada com bandeirante.club (Tailwind brand.*) */
    --primary: #0a0a0a;        /* preto premium (brand) */
    --primary-dark: #000000;   /* preto puro (gradiente/escuro) */
    --primary-light: #27272a;  /* zinc-800 */
    --primary-lighter: #3f3f46;/* zinc-700 */
    --cream: #fafafa;          /* neutro claro (era creme oliva) */

    /* Dourado — destaque sóbrio, segmento armamento/clube */
    --accent: #c9a227;
    --accent-dark: #a8842f;

    /* WhatsApp — usado SÓ na cortesia pós-envio (não compete na conversão) */
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;

    --text: #18181b;
    --text-muted: #52525b;
    --text-soft: #71717a;
    --bg: #ffffff;
    --bg-soft: #fafafa;        /* neutro frio (era creme da marca) */
    --bg-card: #ffffff;
    --border: #e4e4e7;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,.10);
    --shadow-lg: 0 10px 30px rgba(0,0,0,.15);
    --radius: 12px;
    --radius-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============== HEADER ============== */
.header {
    background: rgba(255,255,255,.96);
    backdrop-filter: saturate(180%) blur(10px);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
}
.logo img { display: block; height: 46px; width: auto; }
.nav {
    display: flex;
    gap: 1.5rem;
}
.nav a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .15s;
}
.nav a:hover { color: var(--primary); }

/* ============== BOTÕES ============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.65rem 1.25rem;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all .15s;
    line-height: 1.2;
    text-decoration: none;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,211,102,.4); }
.btn-block { width: 100%; }
.btn-lg { padding: 0.95rem 1.75rem; font-size: 1rem; }
.btn-link {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    padding: 0;
    font-size: .9rem;
}
.btn-link:hover { color: var(--accent-dark); }

/* ============== HERO ============== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 5rem;
    color: #fff;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(.5);
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(55,53,53,.85), rgba(42,40,40,.75));
    z-index: -1;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero-text { max-width: 600px; }
.hero-badge {
    display: inline-block;
    background: rgba(201,161,74,.2);
    border: 1px solid rgba(201,161,74,.4);
    color: #f0d68a;
    padding: 4px 14px;
    border-radius: 99px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: #fff;
}
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    margin: 0 0 1.5rem;
}
.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hero-bullets li {
    padding: 4px 0;
    color: rgba(255,255,255,.95);
    font-size: .95rem;
}

/* ============== WIZARD CARD ============== */
.wizard-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    color: var(--text);
}
form#lpForm { position: relative; }

.wiz-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 1.75rem;
}
.wiz-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-soft);
    font-weight: 700;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}
.wiz-dot.active {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}
.wiz-dot.done {
    background: var(--accent-dark);
    color: #fff;
}
.wiz-line {
    flex: 0 0 40px;
    height: 2px;
    background: var(--border);
}

.wiz-step { display: none; }
.wiz-step.active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.wiz-q {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 4px;
}
.wiz-q-sub {
    font-size: .85rem;
    color: var(--text-muted);
    margin: 0 0 1rem;
}
/* Hint "toque numa opção" — só aparece no mobile (≤640px) */
.wiz-hint { display: none; }
/* Hint "deslize" — só aparece no mobile (≤640px) */
.swipe-hint { display: none; }

.wiz-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
.wiz-card {
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.875rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    transition: all .15s;
    color: var(--text);
    font-size: .85rem;
    font-weight: 500;
}
.wiz-card svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--primary);
}
.wiz-card:hover {
    border-color: var(--primary);
    background: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}
.wiz-card.selected {
    border-color: var(--primary);
    background: rgba(55,53,53,.06);
    color: var(--primary);
}
.wiz-card span { line-height: 1.2; }

.wiz-select {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .95rem;
    background: #fff;
    color: var(--text);
    transition: border-color .15s;
}
.wiz-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(55,53,53,.15);
}

.wiz-field {
    margin-bottom: 0.875rem;
}
.wiz-field label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .02em;
}
/* Inputs de texto/tel/email — não pega radio/checkbox */
.wiz-field input[type="text"],
.wiz-field input[type="tel"],
.wiz-field input[type="email"],
.wiz-field input[type="number"] {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    transition: border-color .15s;
}
.wiz-field input[type="text"]:focus,
.wiz-field input[type="tel"]:focus,
.wiz-field input[type="email"]:focus,
.wiz-field input[type="number"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(55,53,53,.15);
}

.wiz-disclaimer {
    font-size: .7rem;
    color: var(--text-soft);
    margin: 0.5rem 0 1rem;
    line-height: 1.4;
}

.wiz-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}
/* ============================================================
   BOTÕES DO WIZARD — PADRONIZAÇÃO
   - Back: outline neutro (não compete)
   - Next/Submit: ambos chumbo (uma cor só, sem confusão)
   - Submit final: mesmo chumbo + sombra dourada + ícone (sinaliza "é o passo final")
   ============================================================ */
.wiz-back {
    flex: 0 0 auto;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: .9rem;
    transition: border-color .15s, color .15s;
}
.wiz-back:hover { border-color: var(--text-muted); color: var(--text); }

.wiz-next, .wiz-submit {
    flex: 1;
    padding: 0.85rem 1rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: .95rem;
    transition: background .15s, box-shadow .15s, transform .1s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.wiz-next:not(:disabled):hover,
.wiz-submit:not(:disabled):hover {
    background: var(--primary-dark);
}
.wiz-next:disabled, .wiz-submit:disabled {
    background: var(--text-soft);
    cursor: not-allowed;
    box-shadow: none;
}

/* Submit final: mesma cor base, mas com sombra dourada que destaca
   sem mudar a paleta. Pulse sutil quando habilitado. */
.wiz-submit:not(:disabled) {
    box-shadow: 0 4px 14px rgba(201, 161, 74, 0.35);
    animation: submitGlow 2.4s ease-in-out infinite;
}
.wiz-submit:not(:disabled):hover {
    box-shadow: 0 6px 20px rgba(201, 161, 74, 0.55);
    transform: translateY(-1px);
    animation: none;
}
@keyframes submitGlow {
    0%, 100% { box-shadow: 0 4px 14px rgba(201, 161, 74, 0.35); }
    50%      { box-shadow: 0 4px 14px rgba(201, 161, 74, 0.35), 0 0 0 4px rgba(201, 161, 74, 0.12); }
}

.wiz-success {
    text-align: center;
    padding: 1rem 0;
}
.wiz-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-dark);
    color: #fff;
    box-shadow: 0 6px 18px rgba(201,161,74,.35);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
}
.wiz-success h3 {
    font-size: 1.4rem;
    margin: 0 0 0.5rem;
    color: var(--primary);
}
.wiz-success-text {
    color: var(--text);
    margin: 0 0 1.25rem;
}
.wiz-success-or {
    font-size: .85rem;
    color: var(--text-muted);
    margin: 1.25rem 0 0.75rem;
}

.wiz-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: .9rem;
}

/* ============== SEÇÕES ============== */
.section {
    padding: 4rem 0;
}
.section-alt { background: var(--bg-soft); }
.section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: var(--primary);
    text-align: center;
}
.section-title.left { text-align: left; }
.section-sub {
    text-align: center;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

/* ============== SERVIÇOS ============== */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.servico-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s;
}
.servico-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.servico-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.servico-card h3 {
    margin: 1rem 1.25rem 0.25rem;
    color: var(--primary);
}
.servico-card p {
    margin: 0 1.25rem;
    color: var(--text-muted);
    font-size: .9rem;
}
.servico-card .btn-link {
    margin: 1rem 1.25rem 1.25rem;
}

/* ============== PASSOS ============== */
.passos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}
.passo {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.passo-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--accent-dark);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.passo h4 {
    margin: 0.75rem 0 0.5rem;
    color: var(--primary);
}
.passo p {
    color: var(--text-muted);
    font-size: .85rem;
    margin: 0;
}

/* ============== SOBRE ============== */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.sobre-grid p {
    color: var(--text);
    font-size: 1rem;
}
.orgaos {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}
.orgaos img {
    filter: grayscale(.4);
    opacity: .9;
}
.sobre-foto {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.sobre-foto-bg {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    filter: brightness(.55) saturate(1.1);
}
.sobre-foto::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(55,53,53,.35), rgba(42,40,40,.5));
    pointer-events: none;
}
.sobre-foto-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    max-width: 360px;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) drop-shadow(0 4px 16px rgba(0,0,0,.35));
    z-index: 2;
    opacity: .95;
}

/* ============== CTA FINAL ============== */
.section-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    text-align: center;
}
.cta-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin: 0 0 0.5rem;
    color: #fff;
}
.cta-inner p {
    color: rgba(255,255,255,.85);
    margin: 0 0 1.75rem;
}
.cta-inner .btn { margin: 0 6px 12px; }

/* ============== FOOTER ============== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,.75);
    padding: 3.5rem 0 1.5rem;
    font-size: .9rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: .92;
    margin-bottom: 1rem;
}
.footer-tag {
    color: rgba(255,255,255,.85);
    margin: 0 0 0.875rem;
    font-size: .9rem;
    line-height: 1.5;
    max-width: 320px;
}
.footer-end {
    color: rgba(255,255,255,.55);
    font-size: .8rem;
    margin: 0;
    line-height: 1.5;
    max-width: 320px;
}
.footer-col h5 {
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 1rem;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: .9rem;
    padding: 4px 0;
    transition: color .15s;
}
.footer-col a:hover { color: var(--accent); }

.footer-legal {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .82rem;
    line-height: 1.6;
    color: rgba(255,255,255,.6);
}
.footer-legal-title {
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0 0 0.875rem;
}
.footer-legal-name {
    color: rgba(255,255,255,.95);
    font-size: .92rem;
    margin: 0 0 0.25rem;
}
.footer-legal-line {
    margin: 0 0 1rem;
    color: rgba(255,255,255,.72);
}
.footer-legal-text {
    margin: 0 0 0.875rem;
    max-width: 880px;
}
.footer-legal-text strong { color: rgba(255,255,255,.92); }
.footer-legal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    max-width: 880px;
}
.footer-legal-list li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.55rem;
}
.footer-legal-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255,255,255,.4);
}
.footer-legal-list li strong { color: rgba(255,255,255,.9); }
.footer-legal-disclaimer {
    font-size: .76rem;
    color: rgba(255,255,255,.45);
    font-style: italic;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 1rem;
    padding-top: 1.5rem;
}
.footer-copy {
    margin: 0;
    color: rgba(255,255,255,.5);
    font-size: .8rem;
}
.footer-wikileads {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: .75rem;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background .15s, color .15s;
}
.footer-wikileads:hover {
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.85);
}
.footer-wikileads img {
    opacity: 1;
    filter: brightness(0) invert(1);
    transition: opacity .15s, filter .15s;
}
.footer-wikileads:hover img { opacity: 1; filter: brightness(0) invert(1) drop-shadow(0 0 3px rgba(255,255,255,.4)); }

@media (max-width: 760px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============== WHATSAPP FLUTUANTE ============== */
.wa-floating {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37,211,102,.5);
    z-index: 40;
    transition: transform .2s, box-shadow .2s;
    animation: pulse 2.5s infinite;
}
.wa-floating:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(37,211,102,.6);
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 20px rgba(37,211,102,.5); }
    50% { box-shadow: 0 8px 20px rgba(37,211,102,.5), 0 0 0 12px rgba(37,211,102,.15); }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .servicos-grid { grid-template-columns: 1fr; }
    .passos { grid-template-columns: repeat(2, 1fr); }
    .sobre-grid { grid-template-columns: 1fr; gap: 2rem; }
    .nav { display: none; }
}
@media (max-width: 540px) {
    .wiz-cards { grid-template-columns: 1fr; }
    .header-inner .btn { padding: .5rem .75rem; font-size: .8rem; }
    .header-inner .btn span { display: none; }
    .hero { padding: 2.5rem 0 3rem; }
    .wizard-card { padding: 1.25rem; }
    .passos { grid-template-columns: 1fr; }
    .wa-floating { width: 54px; height: 54px; bottom: 18px; right: 18px; }
    .section { padding: 2.5rem 0; }
}

/* ============================================================
   NOVAS SEÇÕES (instrutores, cursos, vantagens, etc.)
   ============================================================ */

/* HERO trio (Clube · Escola · Despachante) */
.hero-trio {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1rem;
    
}
.trio-item {
    color: #f0d68a;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: rgba(201,161,74,.15);
    border: 1px solid rgba(201,161,74,.35);
    padding: 3px 10px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.trio-item svg {
    color: var(--accent);
    flex-shrink: 0;
}
.trio-sep {
    color: rgba(255,255,255,.4);
    font-size: 1rem;
}
.hero-tagline {
    font-size: 1.1rem;
    color: #f0d68a;
    font-weight: 600;
    margin: 0 0 0.75rem;
    font-style: italic;
}

/* Wizard title */
.wizard-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    color: var(--primary);
    text-align: center;
}
.wizard-sub {
    font-size: .85rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0 0 1.25rem;
}

/* Serviço cards — tag + botão outline */
.servico-tag {
    display: inline-block;
    margin: 0 1.25rem 0.5rem;
    font-size: .7rem;
    font-weight: 600;
    color: var(--accent-dark);
    background: rgba(201,161,74,.12);
    padding: 3px 10px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.btn-outline-primary {
    margin: 0.5rem 1.25rem 1.25rem;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    transition: all .15s;
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

/* VANTAGENS grid — cards com SVG bem desenhado e cor da brand */
.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.vantagem {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s;
    border-top: 3px solid transparent;
}
.vantagem:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--accent);
}
.vantagem:hover .vantagem-icon {
    transform: scale(1.1) rotate(-3deg);
}
.vantagem-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    color: var(--primary);
    transition: transform .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vantagem-icon svg {
    width: 100%;
    height: 100%;
}
.vantagem h4 {
    margin: 0 0 0.5rem;
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 700;
}
.vantagem p {
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0;
    line-height: 1.5;
}

/* CURSOS grid — design moderno com hero gradient e CTA destacado */
.cursos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.curso-card {
    background: transparent;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: none;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.curso-card:hover { transform: translateY(-3px); }
.curso-card:hover .curso-hero { background: transparent; }
.curso-card:hover .curso-hero svg {
    transform: scale(1.08) rotate(-3deg);
}
/* Hero do curso — fundo transparente pra imagens não destacarem do fundo da seção (cards flutuam sem moldura). */
.curso-hero {
    background: transparent;
    color: var(--primary);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.curso-hero img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform .4s ease;
}
.curso-card:hover .curso-hero img {
    transform: scale(1.1);
}

/* Card do fuzil — arma comprida pede mais largura pra parecer proporcional aos outros */
.curso-card--fuzil .curso-hero img { width: 240px; height: 240px; }
.curso-body {
    padding: 1.25rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.curso-card h4 {
    margin: 0 0 0.5rem;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .05em;
}
.curso-card p {
    color: var(--text-muted);
    font-size: .85rem;
    margin: 0 0 1.25rem;
    flex: 1;
    line-height: 1.5;
}
.curso-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 0.65rem 0.75rem;
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    color: var(--primary);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
}
.curso-cta:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}
.curso-cta span {
    transition: transform .15s;
}
.curso-cta:hover span {
    transform: translateX(3px);
}
.cursos-cta {
    text-align: center;
    margin-top: 2rem;
}

/* OUTROS SERVIÇOS grid — agora com imagens reais ao invés de emoji */
.outros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.outro-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--text);
    transition: all .15s;
}
.outro-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.outro-card:hover img {
    transform: scale(1.05);
}
.outro-card img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-soft);
    padding: 4px;
    transition: transform .2s;
    border: 1px solid var(--border);
}
.outro-card > div { min-width: 0; }
.outro-card h5 {
    margin: 0;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
}
.outro-card p {
    margin: 2px 0 0;
    color: var(--text-muted);
    font-size: .85rem;
    line-height: 1.4;
}

/* INSTRUTORES */
.instrutores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}
.instrutor-card {
    text-align: center;
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s;
}
.instrutor-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.instrutor-foto {
    width: 140px;
    height: 140px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent);
    background: var(--bg-soft);
}
.instrutor-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.instrutor-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: .05em;
}
.instrutor-card h4 {
    margin: 0 0 0.25rem;
    color: var(--primary);
    font-size: 1.05rem;
}
.instrutor-cargo {
    display: inline-block;
    color: var(--accent-dark);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 0.75rem;
}
.instrutor-card p {
    color: var(--text-muted);
    font-size: .85rem;
    margin: 0;
    line-height: 1.5;
}

/* DEPOIMENTOS */
.depoimentos-header {
    text-align: center;
    margin-bottom: 2rem;
}
.rating-stars {
    color: var(--accent);
    font-size: 1.5rem;
    letter-spacing: .15em;
}
.depoimentos-header p {
    color: var(--text-muted);
    margin: 0.5rem 0 0;
}
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.depoimento {
    background: #fff;
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.25rem 1.5rem;
    margin: 0;
    box-shadow: var(--shadow-sm);
}
.depoimento p {
    margin: 0 0 0.5rem;
    color: var(--text);
    font-size: .95rem;
    font-style: italic;
    line-height: 1.5;
}
.depoimento cite {
    color: var(--text-muted);
    font-size: .8rem;
    font-style: normal;
    font-weight: 600;
}

/* SOBRE — texto reforçado */
.sobre-grid p {
    color: var(--text);
    margin: 0 0 1rem;
}
.orgaos {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}
.orgaos span {
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ONDE ESTAMOS */
.section-onde { background: linear-gradient(180deg, var(--bg-soft), #fff); }
.onde-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: stretch;
}
.onde-info { display: flex; flex-direction: column; gap: 1.25rem; }
.onde-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    padding: 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.onde-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201, 161, 74, 0.12);
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.onde-icon svg {
    width: 22px;
    height: 22px;
}
.onde-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
    font-size: .95rem;
}
.onde-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.5;
}
.onde-item a { color: var(--accent-dark); font-weight: 600; }
.onde-item a:hover { color: var(--accent); }
.onde-mapa {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 360px;
}
.onde-mapa iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: none;
    display: block;
}

/* CTA final atualizado */
.btn-light {
    background: #fff;
    color: var(--primary);
}
.btn-light:hover { background: var(--bg-soft); }
.cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    
}

/* FOOTER */
.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-links a {
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    transition: color .15s;
}
.footer-links a:hover { color: var(--accent); }
.footer-final {
    text-align: right;
    font-size: .8rem;
}

/* RESPONSIVE additional */
@media (max-width: 980px) {
    .vantagens-grid { grid-template-columns: repeat(2, 1fr); }
    .cursos-grid { grid-template-columns: repeat(2, 1fr); }
    .outros-grid { grid-template-columns: repeat(2, 1fr); }
    .instrutores-grid { grid-template-columns: 1fr; }
    .depoimentos-grid { grid-template-columns: 1fr; }
    .onde-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-final { text-align: left; }
}
@media (max-width: 540px) {
    .vantagens-grid { grid-template-columns: 1fr; }
    .cursos-grid { grid-template-columns: 1fr; }
    .outros-grid { grid-template-columns: 1fr; }
    .hero-trio { gap: 4px; font-size: .65rem; }
}

/* ============================================================
   DEPOIMENTOS SLIDER (Google Reviews)
   ============================================================ */

.depoimentos-header p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    
    justify-content: center;
}
.google-logo {
    height: 18px;
    width: auto;
    vertical-align: middle;
}

.reviews-slider {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 4px 0 8px;
    /* overflow visível pra setas posicionadas com left/right negativo aparecerem */
}
.reviews-viewport {
    overflow: hidden;
    border-radius: var(--radius);
}
.reviews-track {
    display: flex;
    gap: 1.25rem;
    transition: transform .45s cubic-bezier(.4,.0,.2,1);
    will-change: transform;
}

.review-card {
    flex: 0 0 calc((100% - 2.5rem) / 3);
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    box-shadow: var(--shadow-sm);
    min-height: 230px;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.review-head img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-soft);
    border: 2px solid #fff;
    box-shadow: var(--shadow-sm);
}
.review-head strong {
    display: block;
    font-size: .95rem;
    color: var(--text);
    line-height: 1.2;
}
.review-stars {
    display: inline-block;
    color: #fbbc05;
    font-size: .9rem;
    letter-spacing: .1em;
    margin-top: 2px;
}
.review-source {
    position: absolute;
    right: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--border);
    font-family: "Arial",sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #4285f4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-card > p {
    color: var(--text);
    font-size: .9rem;
    line-height: 1.55;
    margin: 0;
    font-style: italic;
    flex: 1;
}

/* Setas */
.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    box-shadow: var(--shadow-md);
    transition: all .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.reviews-arrow:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}
.reviews-prev { left: -20px; }
.reviews-next { right: -20px; }
.reviews-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
}

/* Dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.25rem;
}
.reviews-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .2s;
}
.reviews-dots button.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 980px) {
    .review-card { flex: 0 0 calc((100% - 1.25rem) / 2); }
    .reviews-prev { left: -8px; }
    .reviews-next { right: -8px; }
}
@media (max-width: 640px) {
    .review-card {
        flex: 0 0 100%;
        min-height: auto;
    }
    .reviews-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
    .reviews-prev { left: 4px; }
    .reviews-next { right: 4px; }
}

/* CTA "Ver no Google" abaixo do slider */
.reviews-google-cta {
    text-align: center;
    margin-top: 2rem;
}
.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0.95rem 1.75rem;
    background: #fff;
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all .15s;
}
.btn-google:hover {
    border-color: #4285F4;
    box-shadow: 0 4px 14px rgba(66,133,244,.18);
    transform: translateY(-1px);
}
.btn-google svg {
    flex-shrink: 0;
}
.btn-google span {
    color: #4285F4;
    font-weight: 700;
    transition: transform .15s;
}
.btn-google:hover span {
    transform: translateX(3px);
}

/* ============================================================
   BANNER DE URGÊNCIA NO HERO
   ============================================================ */
/* Banner de urgência no hero — paleta dourada da marca (não verde WA) */
.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.85);
    padding: 4px 0;
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    animation: none;
}
.hero-urgency strong {
    color: #f0d68a;
    font-weight: 700;
}
.urgency-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
    flex-shrink: 0;
    position: relative;
}
.urgency-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent);
    animation: urgencyBlink 1.4s ease-in-out infinite;
}
@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 161, 74, 0.35); }
    50%      { box-shadow: 0 0 0 6px rgba(201, 161, 74, 0); }
}
@keyframes urgencyBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .35; transform: scale(2.5); }
}

/* ============================================================
   CASES (histórias reais)
   ============================================================ */
.section-tag {
    display: inline-block;
    background: rgba(201,161,74,.15);
    color: var(--accent-dark);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 4px 14px;
    border-radius: 99px;
    margin-bottom: 0.75rem;
    text-align: center;
    border: 1px solid rgba(201,161,74,.3);
}
#cases .section-tag {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1080px;
    margin: 0 auto;
}
.case-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s;
    border-top: 3px solid var(--accent);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}
.case-card::before {
    content: """;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--accent);
    opacity: .15;
    font-family: Georgia, serif;
    font-weight: 700;
}
.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.case-head {
    display: flex;
    align-items: center;
    gap: 12px;
}
.case-head img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
    flex-shrink: 0;
}
.case-head strong {
    display: block;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}
.case-head span {
    font-size: .75rem;
    color: var(--text-muted);
}
.case-tags {
    display: flex;
    
    gap: 6px;
}
.case-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
    background: var(--bg-soft);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .03em;
}
.case-tag-cac    { background: rgba(201,161,74,.18); color: var(--accent-dark); }
.case-tag-posse  { background: rgba(55,53,53,.10); color: var(--primary); }
.case-tag-curso  { background: rgba(201,161,74,.15); color: var(--accent-dark); }

.case-quote {
    color: var(--text);
    font-size: .92rem;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}
.case-quote strong {
    color: var(--primary);
    background: rgba(201,161,74,.15);
    padding: 1px 4px;
    border-radius: 3px;
}
.case-meta {
    border-top: 1px dashed var(--border);
    padding-top: 0.875rem;
    font-size: .8rem;
    color: var(--text-muted);
}
.case-meta strong {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 980px) {
    .cases-grid { grid-template-columns: 1fr; }
}

/* Disclaimer dos cases — discreto, sutil, com ícone de cadeado */
.cases-disclaimer {
    max-width: 720px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: .75rem;
    color: var(--text-soft);
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    
}
.cases-disclaimer svg {
    color: var(--text-soft);
    flex-shrink: 0;
}

/* ============================================================
   BOTÃO WHATSAPP NO HEADER (substitui o menu)
   - Pulse verde no ícone (indica "online")
   - 2 linhas: 'online · falar agora' + 'WhatsApp do clube'
   ============================================================ */
.header-clean {
    /* Sem menu, alinha logo à esquerda e botão à direita */
    justify-content: space-between;
}

.btn-wa-header {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    padding: 0.65rem 1.25rem 0.65rem 0.875rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: transform .15s, box-shadow .15s;
    line-height: 1.15;
}
.btn-wa-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
}

.wa-header-icon {
    position: relative;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wa-header-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    animation: waHeaderPulse 1.8s ease-out infinite;
}
@keyframes waHeaderPulse {
    0%   { box-shadow: 0 0 0 0    rgba(255,255,255,0.55); }
    100% { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
}

.wa-header-text {
    display: flex;
    flex-direction: column;
}
.wa-header-line1 {
    font-size: .7rem;
    font-weight: 600;
    opacity: .92;
    text-transform: uppercase;
    letter-spacing: .03em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.wa-header-online {
    background: #ffffff;
    color: #128c7e;
    font-weight: 800;
    padding: 1px 7px;
    border-radius: 99px;
    font-size: .65rem;
    letter-spacing: .04em;
}
.wa-header-line2 {
    font-size: .95rem;
    font-weight: 700;
    margin-top: 2px;
}

/* Mobile: encolhe texto */
@media (max-width: 540px) {
    .btn-wa-header {
        padding: 0.5rem 0.875rem 0.5rem 0.5rem;
        gap: 8px;
    }
    .wa-header-icon { width: 32px; height: 32px; }
    .wa-header-icon svg { width: 16px; height: 16px; }
    .wa-header-line1 { font-size: .6rem; }
    .wa-header-line2 { font-size: .8rem; }
    .wa-header-online { display: none; }
}
@media (max-width: 380px) {
    .wa-header-text { display: none; }
    .btn-wa-header { padding: 0.45rem; }
}

/* ============================================================
   HIERARQUIA — Form é a opção principal, WA é secundária
   ============================================================ */

/* Selo "Forma mais escolhida" acima do título do wizard */
.wizard-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    padding: 5px 14px;
    border-radius: 99px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 0.875rem;
    box-shadow: 0 4px 10px rgba(201,161,74,.3);
}

/* Wizard card mais "premium" — destaque visual */
.wizard-card {
    position: relative;
    border: 2px solid rgba(201,161,74,.25);
}
.wizard-card::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: calc(var(--radius-lg) + 6px);
    background: linear-gradient(135deg, rgba(201,161,74,.18), transparent 60%);
    z-index: -1;
    pointer-events: none;
}
.wizard-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.35rem !important;
}
.wizard-sub {
    font-size: .9rem !important;
}

/* Botão WA do header agora é OUTLINE (secundário) — não compete com form */
.btn-wa-header {
    background: transparent !important;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.45) !important;
    box-shadow: none !important;
    padding: 0.45rem 0.95rem 0.45rem 0.55rem !important;
    backdrop-filter: blur(4px);
}
.btn-wa-header:hover {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.7) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15) !important;
}
.btn-wa-header .wa-header-icon {
    width: 30px;
    height: 30px;
    background: var(--whatsapp);
}
.btn-wa-header .wa-header-icon svg { width: 16px; height: 16px; }
.btn-wa-header .wa-header-line1 { font-size: .65rem; opacity: .85; }
.btn-wa-header .wa-header-line2 { font-size: .85rem; }
.btn-wa-header .wa-header-online {
    background: var(--whatsapp);
    color: #fff;
}

/* ============================================================
   BOTÃO PRINCIPAL DO HEADER (substitui o de WhatsApp)
   ============================================================ */
.btn-form-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 0.65rem 1.35rem;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 4px 14px rgba(55,53,53,.3);
    transition: transform .15s, box-shadow .15s;
}
.btn-form-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55,53,53,.4);
}
.btn-form-header svg {
    color: var(--accent);
}

/* ============================================================
   BOTÃO FLUTUANTE — agora aponta pro FORM (não WhatsApp)
   ============================================================ */
.form-floating {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
    padding: 14px 22px 14px 18px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    box-shadow: 0 8px 20px rgba(168,132,47,.45);
    z-index: 40;
    transition: transform .2s, box-shadow .2s;
    animation: formFloatingPulse 2.5s ease-in-out infinite;
}
.form-floating:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(168,132,47,.55);
    animation: none;
}
.form-floating svg { flex-shrink: 0; }
@keyframes formFloatingPulse {
    0%, 100% { box-shadow: 0 8px 20px rgba(168,132,47,.45); }
    50%      { box-shadow: 0 8px 20px rgba(168,132,47,.45), 0 0 0 14px rgba(201,161,74,.18); }
}
@media (max-width: 540px) {
    .form-floating { padding: 12px 18px 12px 14px; bottom: 18px; right: 18px; font-size: .85rem; }
    .form-floating-text { display: none; }
}

/* Botão WA do header — escondido agora que removemos a tag */
.btn-wa-header, .wa-floating { display: none !important; }

/* ============================================================
   WIZARD step 3 — radio group e checkbox de idoneidade
   ============================================================ */
.wiz-radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.wiz-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    background: var(--bg-soft);
    transition: all .15s;
    font-size: .9rem;
}
.wiz-radio:hover {
    border-color: var(--primary);
    background: #fff;
}
.wiz-radio input { accent-color: var(--primary); flex-shrink: 0; }
.wiz-radio:has(input:checked) {
    border-color: var(--primary);
    background: rgba(55,53,53,.06);
    color: var(--primary);
    font-weight: 600;
}

.wiz-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--bg-soft);
    cursor: pointer;
    margin-bottom: 0.75rem;
    font-size: .8rem;
    line-height: 1.45;
    color: var(--text);
}
.wiz-checkbox input {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--primary);
}
.wiz-checkbox:has(input:checked) {
    border-color: var(--primary);
    background: rgba(55,53,53,.04);
}
.wiz-checkbox strong { color: var(--primary); }

@media (max-width: 540px) {
    .wiz-radio-group { grid-template-columns: 1fr; }
}

/* ============================================================
   FIX — remove sombra/outline retangular ao clicar em radios/checkbox
   (tap-highlight do webkit + outline default do browser)
   ============================================================ */
.wiz-radio,
.wiz-checkbox,
.wiz-card,
button {
    -webkit-tap-highlight-color: transparent;
}
.wiz-radio:focus,
.wiz-radio:active,
.wiz-checkbox:focus,
.wiz-checkbox:active,
.wiz-radio input:focus,
.wiz-checkbox input:focus {
    outline: none !important;
}
/* Mantém acessibilidade via teclado (focus-visible só aparece em Tab,
   não em clique do mouse) */
.wiz-radio:focus-visible,
.wiz-checkbox:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================================
   MOBILE OPTIMIZATIONS (2026-05-14)
   Auditoria UX mobile:
   - Hero reordenado (wizard antes de tagline/bullets)
   - Wizard step 1 com hint visível + chevron + selected ✓
   - Vantagens/Cursos/Outros/Instrutores → carrossel scroll-snap
   - Section padding menor, tipografia ajustada
   - Flutuante esconde quando wizard visível
   ============================================================ */

@media (max-width: 640px) {
    /* ---------- HERO REORDER ---------- */
    .hero { padding: 1.5rem 0 2rem; }
    .hero-inner {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
    }
    .hero-text {
        display: contents;
        max-width: none;
    }
    .hero-trio    { order: 1; margin: 0 0 .5rem; }
    .hero h1      { order: 2; font-size: 1.55rem; line-height: 1.2; margin: 0 0 .5rem; text-align: center; }
    .hero-urgency {
        order: 3;
        margin: 0 auto .5rem; align-self: center; width: fit-content; max-width: 100%;
        font-size: .68rem;
        padding: 5px 10px 5px 8px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.15);
        font-weight: 400;
    }
    .hero-urgency strong { color: #fff; font-weight: 600; }
    .wizard-card  { order: 4; }
    .hero-tagline { order: 5; font-size: 1rem; margin: .75rem 0 .25rem; text-align: center; }
    .hero-sub     { order: 6; font-size: .9rem; margin: 0 0 .5rem; text-align: center; }
    .hero-bullets { order: 7; font-size: .88rem; padding-left: 0; text-align: center; list-style: none; }
    .hero-bullets li { padding: 2px 0; list-style: none; }

    /* Trio: texto simples sem chip — só assinatura leve antes do H1 */
    .hero-trio {
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: center;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0 0 .5rem;
        width: 100%;
        max-width: none;
        opacity: .9;
    }
    .trio-item {
        background: transparent;
        border: none;
        padding: 0;
        font-size: .68rem;
        letter-spacing: .05em;
        font-weight: 700;
        text-transform: none;
        color: rgba(240,214,138,.85);
        white-space: nowrap;
        gap: 4px;
    }
    .trio-item svg { display: inline-block; width: 10px; height: 10px; color: rgba(240,214,138,.85); }
    .trio-sep {
        display: inline;
        color: rgba(240,214,138,.4);
        font-size: .7rem;
    }

    /* ---------- WIZARD ---------- */
    .wizard-card { padding: 1.1rem 1rem; border-radius: 14px; border-width: 1.5px; }
    .wizard-card::before { display: none; }
    .wizard-badge { margin-bottom: .5rem; font-size: .65rem; padding: 4px 11px; }
    .wizard-title { font-size: 1.15rem !important; margin-bottom: .15rem !important; }
    .wizard-sub { font-size: .8rem !important; margin-bottom: .85rem !important; }
    .wiz-progress { gap: 4px; margin-bottom: 1rem; }
    .wiz-line { flex: 0 0 28px; }
    .wiz-dot { width: 28px; height: 28px; font-size: .8rem; }

    /* Hint "toque numa opção" - aparece só no step 1 */
    .wiz-hint {
        background: linear-gradient(135deg, rgba(201,161,74,.18), rgba(201,161,74,.05));
        border: 1px solid rgba(201,161,74,.4);
        color: var(--accent-dark);
        font-size: .78rem;
        font-weight: 600;
        padding: 7px 12px;
        border-radius: 8px;
        text-align: center;
        margin: 0 0 .75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    /* Cards do wizard: mais "clicáveis" */
    .wiz-cards { gap: .5rem; grid-template-columns: 1fr; }
    .wiz-card {
        position: relative;
        padding: .9rem 2.25rem .9rem .85rem;
        border-width: 2px;
        border-color: #d4d4d0;
        box-shadow: 0 2px 5px rgba(0,0,0,.05);
        font-size: .88rem;
        min-height: 52px;
        background: #fff;
    }
    .wiz-card::after {
        content: "›";
        position: absolute;
        right: .9rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.6rem;
        color: var(--text-soft);
        font-weight: 300;
        line-height: 1;
        transition: color .15s, transform .15s;
    }
    .wiz-card:active {
        transform: scale(.985);
        border-color: var(--primary);
    }
    .wiz-card.selected {
        border-color: var(--accent-dark);
        background: rgba(201,161,74,.10);
        color: var(--primary);
        box-shadow: 0 4px 14px rgba(201,161,74,.30);
    }
    .wiz-card.selected::after {
        content: "✓";
        color: var(--accent-dark);
        font-size: 1.05rem;
        font-weight: 700;
    }

    /* ---------- HEADER ---------- */
    .logo img { height: 36px; }
    .header-inner { padding: .55rem 1rem; }
    .btn-form-header {
        padding: .5rem .85rem;
        font-size: .75rem;
        gap: 6px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .btn-form-header svg { width: 14px; height: 14px; flex-shrink: 0; }
    /* Mantém o texto visível no mobile (sobrescreve o display:none anterior) */
    .header-inner .btn-form-header span { display: inline; white-space: nowrap; }
    .header-inner .btn span:not(.btn-form-header span) { display: none; }

    /* ---------- CARROSSEL HORIZONTAL ---------- */
    .vantagens-grid,
    .outros-grid,
    .cursos-grid,
    .instrutores-grid {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: .85rem;
        padding: .5rem 1.25rem 1.25rem;
        margin: 0 -1.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-padding-left: 1.25rem;
    }
    .vantagens-grid::-webkit-scrollbar,
    .outros-grid::-webkit-scrollbar,
    .cursos-grid::-webkit-scrollbar,
    .instrutores-grid::-webkit-scrollbar { display: none; }

    .vantagem,
    .outro-card,
    .curso-card,
    .instrutor-card {
        scroll-snap-align: start;
    }
    .vantagem      { flex: 0 0 76%; }
    .outro-card    { flex: 0 0 78%; }
    .curso-card    { flex: 0 0 76%; }
    .instrutor-card{ flex: 0 0 82%; }

    .curso-hero { height: 160px; }
    .curso-hero img { width: 130px; height: 130px; }
    .curso-card--fuzil .curso-hero img { width: 150px; height: 150px; }
    .instrutor-foto { width: 110px; height: 110px; }
    .instrutor-card { padding: 1.5rem 1.25rem; }
    .vantagem { padding: 1.5rem 1.1rem 1.25rem; }
    .vantagem-icon { width: 60px; height: 60px; }

    /* Hint "deslize" abaixo dos carrosséis */
    .swipe-hint {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        font-size: .72rem;
        color: var(--text-soft);
        margin-top: -.25rem;
        font-weight: 500;
        animation: swipeBounce 2.2s ease-in-out infinite;
    }
    .swipe-hint::before { content: ""; }
    .swipe-hint::after { content: "→"; font-size: 1rem; }
    @keyframes swipeBounce {
        0%, 100% { transform: translateX(-3px); }
        50%      { transform: translateX(3px); }
    }

    /* ---------- SERVIÇOS (3 cards, mantém vertical) ---------- */
    .servico-card img { aspect-ratio: 21/9; }
    .servicos-grid { gap: 1rem; }

    /* ---------- CASES — aspa menor ---------- */
    .case-card::before { font-size: 2.5rem; top: .25rem; right: .75rem; }
    .case-card { padding: 1.25rem 1.1rem 1.1rem; }
    .cases-grid { gap: 1rem; }

    /* ---------- ONDE ESTAMOS ---------- */
    .onde-grid { gap: 1.25rem; }
    .onde-info { gap: .65rem; }
    .onde-item { padding: .85rem 1rem; gap: .75rem; }
    .onde-icon { width: 36px; height: 36px; border-radius: 8px; }
    .onde-icon svg { width: 18px; height: 18px; }
    .onde-item strong { font-size: .88rem; }
    .onde-item p { font-size: .82rem; }
    .onde-mapa, .onde-mapa iframe { min-height: 240px; }

    /* ---------- SOBRE ---------- */
    .sobre-grid { gap: 1.5rem; }
    .sobre-grid p { font-size: .92rem; margin-bottom: .75rem; }
    .sobre-foto-logo { width: 55%; }

    /* ---------- SECTION padding ---------- */
    .section { padding: 2rem 0; }
    .section-sub { margin-bottom: 1.5rem; font-size: .9rem; }
    .section-title { font-size: 1.45rem; }

    /* ---------- CTA FINAL ---------- */
    .section-cta { padding: 2rem 0; }
    .cta-inner h2 { font-size: 1.4rem; }
    .cta-inner p { font-size: .9rem; }

    /* ---------- ANIMAÇÕES SUTIS ---------- */
    .urgency-dot::after { animation-duration: 2.4s; }
    .hero-urgency { animation: none; box-shadow: none; }

    /* ---------- FLUTUANTE ---------- */
    .form-floating {
        padding: 11px 16px;
        font-size: .82rem;
        bottom: 14px;
        right: 14px;
        transition: opacity .25s, transform .25s, box-shadow .2s;
    }
    .form-floating.is-hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateY(28px) scale(.85);
    }
    .form-floating svg { width: 18px; height: 18px; }
}

/* Telas muito estreitas */
@media (max-width: 380px) {
    .wiz-line { flex: 0 0 18px; }
    .wiz-dot { width: 26px; height: 26px; font-size: .75rem; }
    .hero h1 { font-size: 1.4rem; }
    .wizard-title { font-size: 1.05rem !important; }
    .hero-trio { padding: 4px 8px; gap: 4px; }
    .trio-item { font-size: .52rem; gap: 3px; }
    .trio-item svg { width: 9px; height: 9px; }
    .trio-sep { font-size: .6rem; }
    .logo img { height: 32px; }
    .btn-form-header { padding: .45rem .7rem; font-size: .72rem; }
}

/* Respeitar prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .urgency-dot::after,
    .form-floating,
    .wiz-submit:not(:disabled),
    .hero-urgency,
    .wa-floating,
    .swipe-hint { animation: none !important; }
}

/* Override final mobile: força largura natural do banner de urgência
   e bullets centralizados (parent .hero-text tem display:contents,
   então flex-column align-items:stretch estava forçando 100%) */
@media (max-width: 640px) {
    .hero-inner > .hero-urgency,
    .hero-text .hero-urgency {
        justify-content: center;
        
        max-width: 100%;
        align-self: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .hero-bullets {
        width: fit-content;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center;
        list-style: none;
        padding: 0;
    }
}
