/* ==========================================================================
   VARIÁVEIS E RESET
   ========================================================================== */
:root {
    --bg-deep: #020c1b;
    --bg-surface: #0a192f;
    --accent-lime: #ccff00;
    --accent-cyan: #00f0ff;
    --text-primary: #e6f1ff;
    --text-secondary: #8892b0;
    --font-display: 'Outfit', sans-serif;
    --font-mono: 'Space Grotesk', monospace;
    --noise-url: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}


.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    margin: 0 5px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-lime);
}

.footer-info {
    margin: 20px 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.65rem;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-display);
    overflow-x: hidden;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Background Noise */
.hero-bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--noise-url);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ==========================================================================
   TIPOGRAFIA GERAL
   ========================================================================== */
.display-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
}

.italic-accent {
    font-style: italic;
    color: var(--accent-lime);
    font-family: var(--font-mono);
}

.lead-text {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
}

/* Títulos de Seção */
.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    line-height: 1.1;
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-editorial {
    min-height: 100vh;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.brand-mark {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    display: inline-block;
    border: 1px solid var(--text-secondary);
    padding: 8px 16px;
    border-radius: 100px;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Ticker Superior */
.ticker-wrap {
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
    opacity: 0.8;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker {
    display: flex;
    width: fit-content;
    animation: tickerLoop 20s linear infinite;
}

.ticker span,
.ticker-item {
    white-space: nowrap;
    padding-right: 40px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-cyan);
}

/* Botões */
.cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-premium {
    background: var(--accent-lime);
    color: #000;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 4px;
    transition: transform 0.2s;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
}

.btn-premium:hover {
    transform: scale(1.05);
}

.btn-text {
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
}

.btn-price {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    opacity: 0.8;
}

.offer-tag {
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    font-size: 0.8rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

/* Value Highlights */
.value-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
    max-width: 500px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.highlight-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.highlight-text {
    line-height: 1.4;
}

.highlight-text strong {
    color: var(--accent-lime);
    font-weight: 600;
}

/* Visual do App (Hero) */
.hero-visual-editorial {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    perspective: 1000px;
}

.device-frame {
    width: 100%;
    transform: rotateY(-12deg) rotateX(5deg);
    transition: 0.5s;
}

.app-screen {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.5);
    border: 3px solid #222;
}

/* Badges Desktop */
.stat-card {
    position: absolute;
    background: rgba(10, 25, 47, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    z-index: 10;
    white-space: nowrap;
}

.floating-1 {
    top: 20%;
    right: -30px;
    animation: float 4s infinite ease-in-out;
}

.floating-2 {
    bottom: 20%;
    left: -30px;
    animation: float 5s infinite reverse ease-in-out;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--accent-lime);
    font-weight: 700;
    margin-right: 5px;
}

.stat-label {
    font-size: 0.7rem;
    color: #fff;
    text-transform: uppercase;
}

/* Badges Mobile (Escondido no Desktop) */
.mobile-badges {
    display: none;
}

/* Animações */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes tickerLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   FAIXA MARQUEE (Separador)
   ========================================================================== */
.marquee-separator {
    background: var(--accent-lime);
    color: #000;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    /* Garante largura total */
    transform: rotate(-2deg) scale(1.05);
    /* Scale evita bordas brancas ao rotacionar */
    margin-top: 60px;
    margin-bottom: 60px;
    white-space: nowrap;
    /* Impede quebra de linha */
}

.marquee-track {
    display: flex;
    width: max-content;
    /* O elemento cresce o quanto for necessário */
    animation: tickerLoop 40s linear infinite;
    /* Ajuste o tempo (40s) para mais rápido ou devagar */
}

.marquee-content {
    flex-shrink: 0;
    /* Impede que o texto seja espremido */
    font-family: var(--font-mono);
    font-weight: 800;
    font-size: 1.2rem;
    padding-right: 30px;
    /* Espaço entre os textos */
}

/* Animação Ajustada para Loop Perfeito */
@keyframes tickerLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exatamente metade do conteúdo duplicado */
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   FEATURES (Recursos)
   ========================================================================== */
.features-editorial {
    padding: 50px 0;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-wrapper img {
    width: 25px;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}


/* ==========================================================================
   HOW IT WORKS (Como Funciona)
   ========================================================================== */
.how-it-works {
    padding: 60px 0;
    background: var(--bg-surface);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 30px;
}

.step {
    flex: 1;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    display: block;
    margin-bottom: 10px;
}

.step h4 {
    color: var(--accent-lime);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.step-line {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(10deg);
}

/* ==========================================================================
   PRICING (Preço)
   ========================================================================== */
.pricing-editorial {
    padding: 60px 0;
}

.offer-wrapper {
    display: flex;
    justify-content: center;
}

.offer-card {
    background: #000;
    border: 2px solid var(--accent-lime);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 0 60px rgba(204, 255, 0, 0.15);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-lime);
    color: #000;
    padding: 5px 20px;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.offer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.offer-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 30px;
}

.offer-price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.offer-price .currency {
    color: var(--accent-lime);
    font-size: 1.5rem;
    margin-right: 5px;
}

.offer-price .period {
    color: var(--text-secondary);
    margin-left: 10px;
}

.offer-features {
    text-align: left;
    margin: 30px 0;
    display: inline-block;
}

.feature-item-check {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    align-items: center;
}

.check-icon {
    color: var(--accent-lime);
    font-weight: 800;
}

.btn-offer {
    display: block;
    background: var(--accent-lime);
    color: #000;
    padding: 18px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    margin-top: 20px;
    transition: 0.2s;
}

.btn-offer:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.3);
}

.payment-methods {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}


/* ==========================================================================
   FAQ (Dúvidas Frequentes)
   ========================================================================== */
.faq-section {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 25px 0;
    font-size: 1.1rem;
    font-family: var(--font-display);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--accent-lime);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-lime);
    transition: transform 0.3s;
}

.accordion-header.active::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-right: 20px;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-minimal {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    margin-top: 40px;
}

.footer-brand {
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-legal span {
    color: var(--text-secondary);
    font-size: 0.8rem;
}


/* ==========================================================================
   RESPONSIVIDADE (MOBILE E TABLET)
   ========================================================================== */
@media (min-width: 901px) {
    .hero-editorial {
        margin-bottom: -120px;
        margin-top: -120px;
    }

}

@media (max-width: 900px) {

    /* HERO */
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-editorial {
        padding-top: 20px;
        justify-content: flex-start;
    }

    .brand-mark {
        margin: 0 auto 30px auto;
        display: table;
    }

    .display-title {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .hero-main-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .lead-text {
        margin: 0 auto 30px auto;
        font-size: 1rem;
    }

    /* Value Highlights Mobile */
    .value-highlights {
        grid-template-columns: 1fr;
        margin: 0 auto 25px auto;
    }

    .highlight-item {
        justify-content: center;
        text-align: left;
    }

    /* Botão Mobile */
    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-premium {
        width: 100%;
        max-width: 350px;
        align-items: center;
    }

    /* Imagem e Badges Mobile */
    .visual-container {
        max-width: 300px;
        margin: 0 auto;
    }

    .device-frame {
        transform: none;
    }

    .app-screen {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    /* Alternância de Badges */
    .desktop-only {
        display: none;
    }

    .mobile-badges {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .stat-pill {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 15px;
        border-radius: 50px;
        font-size: 0.8rem;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .stat-pill .stat-value {
        font-size: 1rem;
        font-weight: 700;
        color: var(--accent-lime);
    }

    /* Features */
    .feature-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .feature-icon-wrapper {
        margin: 0 auto 15px auto;
    }

    /* Steps */
    .steps-container {
        flex-direction: column;
    }

    .step-line {
        display: none;
    }

    /* Pricing */
    .offer-card {
        padding: 40px 25px;
    }

    /* FAQ */
    .faq-section {
        padding: 60px 20px;
    }
}


/* ==========================================================================
   TESTIMONIALS (Depoimentos)
   ========================================================================== */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.stars {
    color: var(--accent-lime);
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-primary);
    line-height: 1.6;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-cyan);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-mono);
}

.reviewer-info .name {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
}

.reviewer-info .status {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Ajustes do Card de Preço */
.offer-card.premium-border {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    background: linear-gradient(145deg, #0a192f 0%, #020c1b 100%);
    overflow: visible;
    /* Para a badge sair pra fora se precisar */
}

.plan-name {
    color: var(--accent-lime);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

/* Preço Ancorado (De/Por) */
.price-container {
    margin: 20px 0;
}

.old-price {
    display: block;
    font-size: 0.9rem;
    color: #ff4d4d;
    /* Vermelho suave */
    text-decoration: line-through;
    opacity: 0.8;
    margin-bottom: -5px;
}

.offer-price .amount {
    font-size: 4.5rem;
    /* Aumentei o preço */
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Linha separadora elegante */
.separator-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 20px 0;
}

/* Destaque no Bônus */
.feature-item-check.highlight-feature {
    background: rgba(204, 255, 0, 0.05);
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid rgba(204, 255, 0, 0.1);
    margin-left: -10px;
    /* Compensar visualmente */
    margin-right: -10px;
}

/* Animação da Badge */
.offer-badge.pulse-animation {
    background: #ff2a2a;
    /* Vermelho chama mais atenção para oferta */
    color: white;
    box-shadow: 0 0 15px rgba(255, 42, 42, 0.4);
    animation: pulseBadges 2s infinite;
}

@keyframes pulseBadges {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

/* Efeito Glow no Botão */
.btn-offer.glow-effect {
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-offer.glow-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

/* Área de Segurança no footer do card */
.security-badges {
    margin-top: 15px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.secure-text {
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.8;
}

.payment-icons span {
    font-weight: 700;
    color: #fff;
}

.feature-item-check {
    display: flex;
    gap: 12px;
    /* Espaço entre ícone e texto */
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    align-items: center;
    /* Garante alinhamento vertical perfeito */
}

.check-icon {
    color: var(--accent-lime);
    /* Cor verde neon */
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    /* Garante que o ícone não encolha se o texto for longo */
}

.offer-badge svg {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 2px;
    /* Ajuste fino ótico */
}

.secure-text svg {
    margin-right: 4px;
    opacity: 0.8;
}

/* Botão WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    /* Adicionei transição suave para o 'bottom' */
    transition: transform 0.3s, bottom 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .whatsapp-float.move-up {
        bottom: 95px;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
    /* Controlado via JS ou Media Query */
}

@media (max-width: 768px) {
    .sticky-mobile-cta.visible {
        transform: translateY(0);
        display: flex;
    }
}

.sticky-price {
    color: var(--accent-lime);
    font-weight: 800;
    font-size: 1.2rem;
    display: block;
    line-height: 1;
}

.sticky-label {
    color: #fff;
    font-size: 0.7rem;
    opacity: 0.7;
}

.sticky-btn {
    background: var(--accent-lime);
    color: #000;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* ==========================================================================
   SEÇÃO PREVIEW (GIF)
   ========================================================================== */
.preview-showcase {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--bg-deep), var(--bg-surface));
}

.cinema-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
    /* Largura original do seu GIF */
    margin: 0 auto;
    perspective: 1000px;
}

.screen-bezel {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 0, 0, 0.5);
    /* Borda preta fina */
    overflow: hidden;
    line-height: 0;
    /* Remove espaços brancos abaixo da img */
}

.preview-gif {
    width: 100%;
    height: auto;
    /* Mantém a proporção 960x432 automaticamente */
    display: block;
    opacity: 0.95;
    /* Leve toque para blendar com o site dark */
}

/* Badge AO VIVO sobre o GIF */
.live-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.pulse-red {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff0000;
    animation: blinkRed 1.5s infinite;
}

@keyframes blinkRed {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

/* Efeito de brilho na tela */
.screen-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Base do Monitor (Estética) */
.monitor-stand {
    width: 30%;
    height: 15px;
    background: linear-gradient(to bottom, #1a1a1a, #000);
    margin: 0 auto;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    opacity: 0.5;
}

/* Responsividade */
@media (max-width: 768px) {
    .preview-showcase {
        padding: 40px 0;
    }

    .live-overlay {
        top: 10px;
        left: 10px;
        padding: 4px 8px;
        font-size: 0.6rem;
    }

    .monitor-stand {
        display: none;
        /* Esconde a base no celular para aproveitar espaço */
    }
}

/* ==========================================================================
   PÁGINAS LEGAIS (Texto Puro)
   ========================================================================== */
.legal-body {
    background: var(--bg-deep);
    color: var(--text-secondary);
    font-family: var(--font-display);
    line-height: 1.8;
}

.legal-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.legal-container h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--accent-lime);
    padding-bottom: 20px;
    display: inline-block;
}

.legal-container h2 {
    color: var(--accent-lime);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-container p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-container li {
    margin-bottom: 10px;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 700;
}

.back-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   NAVBAR DAS PÁGINAS LEGAIS
   ========================================================================== */
.legal-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(2, 12, 27, 0.95);
    /* Fundo escuro quase sólido */
    backdrop-filter: blur(10px);
    /* Efeito de vidro */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 5%;
    /* Alinhado com o container */
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--accent-lime);
    color: #000;
    border-color: var(--accent-lime);
    transform: translateX(-5px);
    /* Leve movimento para esquerda */
}

/* Ajuste do container para não ficar atrás da navbar */
.legal-container {
    margin-top: 100px;
    /* Empurra o texto para baixo */
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .legal-nav {
        padding: 0 20px;
    }

    .legal-container {
        margin-top: 90px;
        padding: 25px;
        width: 90%;
    }

    .legal-container h1 {
        font-size: 1.8rem;
    }
}