/* ============================================================
    RESET BÁSICO (SEM all:revert)
    ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    background: #0a0808;
    color: #eee9db;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
    VARIÁVEIS
    ============================================================ */
:root {
    --gold: #d4a53d;
    --gold-bright: #f0d080;
    --gold-dark: #b8860b;
    --radius: 6px;
    --radius-lg: 8px;
    --top-bar-h: 62px;
    --sticky-h: 84px;
}

/* ============================================================
    RESET ADICIONAL
    ============================================================ */
h1, h2, h3, h4, h5, h6, p, a, span, div, section, article, header, footer, main {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================================
    CONTAINER
    ============================================================ */
.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 5px;
    width: 100%;
}

section {
    padding: 12px 0;
    display: block;
    width: 100%;
}

/* ============================================================
    TOP BAR
    ============================================================ */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #1a0a0a, #2d0f0f);
    color: #fff;
    text-align: center;
    padding: 12px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 14px;
    border-bottom: 3px solid #d4a53d;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .9);
    width: 100%;
    min-height: var(--top-bar-h);
}

.badge-texto {
    font-size: 13px;
    color: #f8f7f5;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.badge-texto strong {
    color: #d4a53d;
}

.contador-badge {
    font-family: 'Oswald', sans-serif;
    color: #f0d080;
    font-weight: 900;
    font-size: 1.5rem;
    min-width: 65px;
    text-shadow: 0 0 20px rgba(255, 0, 0, .3);
}

/* ============================================================
    VÍDEO
    ============================================================ */
.video-section {
    padding-top: 16px;
}

.video-box {
    max-width: 100%;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    border: 3px solid #d4a53d;
    border-radius: 4px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .7), 0 0 30px rgba(212, 165, 61, .08);
    transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 4px;
}

.video-box:hover {
    transform: scale(1.01);
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.play-falso {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, .55);
    cursor: pointer;
    z-index: 10;
    transition: opacity .4s ease, visibility .4s ease;
}

.play-falso.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-btn {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 48px;
    color: #fff;
    background: linear-gradient(135deg, #d4a53d, #b8860b);
    box-shadow: 0 0 0 14px rgba(212, 165, 61, .15);
    animation: pulse-gold 2s infinite;
    transition: transform .2s ease;
}

.play-btn i {
    margin-left: 5px;
}

.play-btn:hover {
    transform: scale(1.06);
}

.play-falso span {
    background: rgba(212, 165, 61, .25);
    color: #d4a53d;
    border: 1px solid rgba(212, 165, 61, .4);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.3px;
    padding: 8px 14px;
    border-radius: 30px;
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 165, 61, .4);
    }
    70% {
        box-shadow: 0 0 0 30px rgba(212, 165, 61, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 165, 61, 0);
    }
}

/* ============================================================
    DOSSIER PANEL
    ============================================================ */
.dossier-panel {
    background: linear-gradient(145deg, #1a1210, #0d0808);
    border: 1px solid rgba(212, 165, 61, .12);
    border-radius: var(--radius-lg);
    padding: 14px 12px;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(212, 165, 61, .04), 0 10px 40px rgba(0, 0, 0, .4);
    transition: box-shadow .3s ease;
    width: 100%;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(90deg, #d4a53d, #f0d080);
    padding: 4px 18px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.section-badge span {
    font-family: 'Oswald', sans-serif;
    font-size: 12.5px;
    color: #0a0a0a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dossier-panel h3 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.25rem, 4.5vw, 1.65rem);
    font-weight: 700;
    color: #f5f2e8;
    line-height: 1.25;
    margin-bottom: 16px;
}

.dossier-panel h3 .gold-text {
    background: linear-gradient(135deg, #d4a53d, #f0d080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dossier-panel p {
    font-size: 16px;
    color: #d0c8b8;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: left;
    border-left: 3px solid #d4a53d;
    padding-left: 16px;
}

.dossier-panel p .highlight-red {
    color: #ff3333;
    font-weight: 700;
}

.dossier-panel p .highlight-gold {
    color: #d4a53d;
    font-weight: 700;
}

/* ============================================================
    HIGHLIGHT BOX
    ============================================================ */
.highlight-box {
    background: linear-gradient(90deg, transparent, rgba(212, 165, 61, .06), transparent);
    border: 1px dashed rgba(212, 165, 61, .25);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 20px;
}

.highlight-box strong {
    font-size: 17px;
    font-family: 'Inter', serif;
    color: #f0d080;
}

.highlight-box strong .count-red {
    color: #ff3333;
}

/* ============================================================
    BOTÃO DE COMPRA
    ============================================================ */
.btn-compra {
    display: inline-block;
    background: linear-gradient(135deg, #d4a53d, #b8860b);
    color: #0a0a0a;
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    padding: 18px 10px;
    border-radius: 50px;
    text-decoration: none;
    width: 100%;
    text-align: center;
    border: none;
    box-shadow: 0 6px 0 #8b6914, 0 15px 35px rgba(212, 165, 61, .25);
    transition: all .15s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 1.5px;
}

.btn-compra i {
    color: #0a0a0a;
}

.btn-compra.pulse {
    animation: pulse-ouro 2s infinite;
}

.btn-compra.sticky-btn {
    font-size: .85rem;
    padding: 12px 14px;
    box-shadow: 0 10px 30px rgba(212, 165, 61, .2);
}

@keyframes pulse-ouro {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 0 #8b6914, 0 15px 35px rgba(212, 165, 61, .25);
    }
    60% {
        transform: scale(1.02);
        box-shadow: 0 6px 0 #8b6914, 0 15px 45px rgba(212, 165, 61, .35);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 0 #8b6914, 0 15px 35px rgba(212, 165, 61, .25);
    }
}

/* ============================================================
    SELOS
    ============================================================ */
.seal-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.seal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(212, 165, 61, .08);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 11.5px;
    color: #a9a094;
    font-family: 'IBM Plex Mono', monospace;
}

.seal-item i {
    color: #d4a53d;
}

/* ============================================================
    TÍTULO DE SEÇÃO
    ============================================================ */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    font-weight: 900;
    color: #f5f2e8;
    margin-bottom: 18px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title .gold-text {
    background: linear-gradient(135deg, #d4a53d, #f0d080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
    CARDS
    ============================================================ */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
}

@media (min-width: 700px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-3d {
    border: 1px solid rgba(212, 165, 61, .08);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: left;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, .8), inset 0 1px 0 rgba(212, 165, 61, .04);
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: rgba(0, 0, 0, .25);
}

.card-3d i {
    font-size: 34px;
    color: #d4a53d;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    margin-bottom: 16px;
    border: 1px solid rgba(212, 165, 61, .1);
    background: rgba(212, 165, 61, .04);
}

.card-3d h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #f1ece0;
}

.card-3d p {
    color: #b0a898;
    font-size: .95rem;
    text-align: left;
    margin-bottom: 0;
    line-height: 1.6;
    border-left: none;
    padding-left: 0;
}

/* ============================================================
    ESTATÍSTICAS
    ============================================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.stat-item-3d {
    background: rgba(0, 0, 0, .25);
    border-radius: var(--radius);
    padding: 20px 8px;
    text-align: center;
    border: 1px solid rgba(212, 165, 61, .06);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .6);
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #d4a53d;
    line-height: 1.2;
}

.stat-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: .7rem;
    color: #b0a898;
    letter-spacing: .5px;
}

/* ============================================================
    DEPOIMENTOS
    ============================================================ */
.depo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 22px;
}

@media (min-width: 700px) {
    .depo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.depo-3d {
    background: rgba(0, 0, 0, .25);
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1px solid rgba(212, 165, 61, .06);
    box-shadow: 0 16px 30px -12px rgba(0, 0, 0, .7);
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: left;
}

.depo-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.depo-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #d4a53d;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(212, 165, 61, .1);
    flex-shrink: 0;
    background: linear-gradient(135deg, #2d1f1f, #1a1210);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #d4a53d;
}

.depo-name {
    font-size: .95rem;
    color: #f1ece0;
    display: block;
    font-weight: 700;
}

.depo-city {
    font-size: .8rem;
    color: #b0a898;
}

.depo-3d p {
    font-size: .95rem;
    font-style: italic;
    color: #d0c8b8;
    line-height: 1.6;
    margin-bottom: 10px;
    border-left: none;
    padding-left: 0;
}

.stars {
    color: #d4a53d;
    font-size: 1rem;
}

/* ============================================================
    EPISÓDIOS
    ============================================================ */
.ep-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
}

@media (min-width: 700px) {
    .ep-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ep-3d {
    background: rgba(0, 0, 0, .25);
    border-left: 4px solid #d4a53d;
    border-radius: var(--radius);
    padding: 16px 18px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .6);
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 1px solid rgba(212, 165, 61, .06);
    border-right: 1px solid rgba(212, 165, 61, .06);
    border-bottom: 1px solid rgba(212, 165, 61, .06);
    text-align: left;
}

.ep-3d.ep-bonus {
    background: linear-gradient(135deg, rgba(212, 165, 61, .04), rgba(184, 134, 11, .04));
    border-left-color: #f0d080;
    border-color: rgba(212, 165, 61, .12);
}

.ep-3d small {
    font-weight: 900;
    color: #d4a53d;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ep-3d.ep-bonus small {
    color: #f0d080;
}

.ep-3d strong {
    display: block;
    font-size: 1.05rem;
    margin: 4px 0;
    color: #f1ece0;
}

.ep-3d span {
    font-size: .9rem;
    color: #b0a898;
}

/* ============================================================
    OFERTA
    ============================================================ */
.offer-box {
    background: linear-gradient(145deg, #1a1210, #0d0808);
    border: 2px solid rgba(212, 165, 61, .18);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    box-shadow: inset 0 1px 0 rgba(212, 165, 61, .04), 0 10px 40px rgba(0, 0, 0, .4);
    width: 100%;
}

.timer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 51, 51, .25);
    border-radius: var(--radius);
    margin-bottom: 18px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    color: #fff;
    text-align: center;
    background: rgba(255, 51, 51, .04);
}

.timer-row .timer-alert {
    color: #ff3333;
}

.timer-row .timer-text {
    color: #b0a898;
}

.flash-row {
    text-align: center;
    margin-bottom: 16px;
}

.badge-flash {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 165, 61, .06);
    color: #d4a53d;
    border: 1px solid rgba(212, 165, 61, .18);
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .6px;
    text-transform: uppercase;
    text-align: center;
}

.badge-flash i {
    color: #f0d080;
}

.price-block {
    text-align: center;
    margin-bottom: 20px;
}

.old-price {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: #8a7a6a;
    margin-bottom: 4px;
}

.old-price s {
    color: #ff3333;
    font-size: 17px;
    font-weight: 800;
}

.price-label {
    color: #b0a898;
    font-size: 15px;
}

.price-value {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.8rem, 9vw, 3.4rem);
    font-weight: 900;
    color: #f0d080;
    line-height: 1.3;
    text-shadow: 0 0 40px rgba(212, 165, 61, .06);
}

.discount-badge {
    display: inline-block;
    margin-top: 12px;
    background: rgba(212, 165, 61, .06);
    color: #d4a53d;
    border: 1px solid rgba(212, 165, 61, .15);
    padding: 10px 18px;
    border-radius: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .5px;
    line-height: 1.5;
}

.discount-badge i {
    color: #f0d080;
}

.quick-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed rgba(212, 165, 61, .08);
}

.quick-benefits span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-family: 'IBM Plex Mono', monospace;
    color: #b0a898;
}

.quick-benefits i {
    color: #d4a53d;
}

.border-gold-dash {
    border: 1px dashed rgba(212, 165, 61, .18);
    background: rgba(212, 165, 61, .02);
    padding: 14px 16px;
    border-radius: var(--radius);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .6px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 18px;
    color: #b0a898;
}

.border-gold-dash .price-alert {
    color: #ff3333;
    font-weight: 900;
}

/* ============================================================
    GARANTIA
    ============================================================ */
.guarantee-box {
    background: linear-gradient(145deg, #1a1210, #0d0808);
    border-left: 4px solid #d4a53d;
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(212, 165, 61, .04), 0 10px 40px rgba(0, 0, 0, .4);
    width: 100%;
}

.guarantee-box p {
    font-size: 16px;
    color: #d0c8b8;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: center;
    border-left: none;
    padding-left: 0;
}

.guarantee-box p .gold-text {
    color: #d4a53d;
    font-weight: 700;
}

/* ============================================================
    FAQ
    ============================================================ */
.faq {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item-3d {
    background: rgba(0, 0, 0, .25);
    border-radius: var(--radius);
    margin-bottom: 10px;
    border: 1px solid rgba(212, 165, 61, .06);
    overflow: hidden;
    box-shadow: 0 6px 20px -6px rgba(0, 0, 0, .5);
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-q {
    padding: 16px 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #d0c8b8;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    text-align: left;
    transition: background .2s ease;
}

.faq-q i {
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    color: #d4a53d;
    font-size: 1.1rem;
}

.faq-item-3d.active .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    font-family: 'Inter';
    display: none;
    padding: 0 18px 18px;
    color: #e4c484;
    font-size: .95rem;
    text-align: left;
    line-height: 1.6;
}

.faq-item-3d.active .faq-a {
    display: block;
    animation: fadeIn .3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
    RODAPÉ
    ============================================================ */
footer {
    background: #0a0808;
    border-top: 2px solid rgba(212, 165, 61, .06);
    padding: 30px 20px;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 70px;
    width: 100%;
}

footer p {
    font-size: 13px;
    color: #a0988e;
    margin-bottom: 14px;
    font-family: 'IBM Plex Mono', monospace;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(43, 10, 10, 0.315);
    border: 1px solid rgba(212, 164, 61, 0.123);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 11.5px;
    color: #bdb6ae;
}

.footer-badge i {
    color: #d4a53d;
}

/* ============================================================
    BARRA FIXA MOBILE
    ============================================================ */
.sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #1a0a0a, #2d0f0f);
    border-top: 2px solid #d4a53d;
    padding: 17px 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 9998;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, .8);
    width: 100%;
}

.sticky-mobile .info {
    flex: 1;
    min-width: 0;
}

.sticky-mobile .info strong {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    color: #ccc7bc;
    white-space: nowrap;
}

.sticky-mobile .preco {
    font-size: 1.4rem;
    font-weight: 900;
    color: #f0d080;
    display: block;
    line-height: 1.2;
    margin-top: 9px;
}

.sticky-mobile .btn-compra {
    flex: 0 0 auto;
    width: auto;
    max-width: 210px;
    margin-top: 0;
    padding: 14px 14px;
    border-radius: 30px;
    font-size: .85rem;
    box-shadow: 0 10px 30px rgba(212, 165, 61, .2);
    color: #0a0a0a;
    border: none;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .sticky-mobile {
        display: none;
    }
    body {
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .sticky-mobile .btn-compra {
        max-width: 199px;
        font-size: .75rem;
        padding: 10px 10px;
    }
}

/* ============================================================
    WHATSAPP
    ============================================================ */
.whats {
    position: fixed;
    bottom: calc(var(--sticky-h) + 19px);
    right: 14px;
    z-index: 9997;
    background: #25D366;
    color: #fff;
    padding: 5px 18px;
    font-size: .9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    font-weight: 500;
    border: 1px solid rgba(37, 211, 102, .15);
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whats i {
    font-size: 20px;
}

@media (min-width: 768px) {
    .whats {
        bottom: 20px;
    }
}

/* ============================================================
    AOS ANIMAÇÕES PERSONALIZADAS (NÃO SOBRESCREVER)
    ============================================================ */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* ============================================================
    RESPONSIVO
    ============================================================ */
@media (max-width: 480px) {
    :root {
        --top-bar-h: 56px;
    }

    .top-bar {
        padding: 10px 8px;
        min-height: var(--top-bar-h);
    }

    .top-bar .contador-badge {
        font-size: 1.3rem;
        min-width: 55px;
    }

    .badge-texto {
        font-size: 10px;
    }

    .video-section {
        padding-top: 10px;
    }

    .dossier-panel {
        padding: 22px 14px;
    }

    .btn-compra {
        font-size: 1rem;
        padding: 16px 12px;
    }

    .highlight-box strong {
        font-size: 15px;
    }

    .play-btn {
        width: 65px;
        height: 65px;
        font-size: 36px;
    }

    .play-falso span {
        font-size: 11px;
        padding: 6px 10px;
    }

    body {
        padding-top: var(--top-bar-h);
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    :root {
        --top-bar-h: 58px;
    }
    body {
        padding-top: var(--top-bar-h);
    }
}

@media (min-width: 769px) {
    body {
        padding-top: var(--top-bar-h);
    }
}