/* ============================================
   TOKENS
   Paleta: preto profundo + branco + um único
   accent âmbar queimado (#C8922A) — mais sóbrio
   que dourado genérico, mais quente que teal.
   Tipografia: Montserrat já carregada.
   Layout: alinhado à esquerda, vídeo centralizado.
   Signature: linha divisória âmbar fina + headline
   grande bold com palavra-chave em peso leve.
============================================ */

:root {
    --bg:           #080808;
    --surface:      #111111;
    --border:       rgba(255,255,255,0.07);

    --text-primary: #F2F2F2;
    --text-muted:   #6B6B6B;
    --text-soft:    #ABABAB;

    --accent:       #C8922A;
    --accent-light: #E5B057;
    --accent-dark:  #9A6D1A;

    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2.5rem;
    --space-5: 4rem;
    --space-6: 6rem;
}

/* ====================
   BASE
==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    padding-top: 36px;
    /* Único efeito de fundo: vignette sutil nas bordas */
    background-image:
        radial-gradient(ellipse 80% 40% at 50% -10%, rgba(200,146,42,0.06) 0%, transparent 70%);
}

/* ====================
   TOP BAR FIXA DE AVISO
==================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #DC2626;
    color: #FFFFFF;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.top-bar-content {
    display: inline-block;
    animation: topBarPulse 2s infinite ease-in-out;
}

@keyframes topBarPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.88;
    }
}

/* ====================
   LAYOUT
==================== */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-5) var(--space-3);
}

/* ====================
   EYEBROW / SUPERHEADLINE
==================== */
.eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: linear-gradient(180deg, #FFF599 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    margin-top: 0.8rem;
    margin-bottom: 0.7rem;
}

/* ====================
   HEADLINE SECTION
==================== */
.headline-section {
    position: relative;
    margin-bottom: var(--space-4);
}

.headline-section::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 650px;
    height: 350px;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.10) 0%, rgba(200, 146, 42, 0.04) 50%, transparent 75%);
    pointer-events: none;
    z-index: -1;
    filter: blur(35px);
}

/* Linha dourada fina — assinatura visual da página */
.headline-section::before {
    content: '';
    display: block;
    width: 45px;
    height: 2.5px;
    background: linear-gradient(90deg, #FFF599 0%, #FFD700 100%);
    margin-top: 0.4rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.main-headline {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    /* Palavra-chave em peso leve cria contraste interno na headline */
}

.main-headline .light {
    font-weight: 300;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4);
}

.main-headline .highlight {
    background: linear-gradient(180deg, #FFF599 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.65));
}

.sub-headline {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #E0E0E0;
    font-weight: 300;
    max-width: 600px;
    line-height: 1.5;
    margin-bottom: var(--space-4);
}

/* ====================
   CAIXA DE ALERTA DO VÍDEO
==================== */
.video-notice-box {
    background: linear-gradient(145deg, rgba(28, 24, 10, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    border: 2px solid #FFD700;
    box-shadow: 0 0 30px 6px rgba(255, 215, 0, 0.35);
    border-radius: 12px;
    padding: 1.1rem 1.4rem;
    margin-bottom: var(--space-3);
    text-align: center;
}

.notice-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.notice-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.notice-title {
    color: #FFD700;
    font-weight: 900;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.notice-subtitle {
    color: #FFFFFF;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.55;
    margin: 0;
}

.notice-highlight {
    color: #FFD700;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    background: rgba(255, 215, 0, 0.12);
    padding: 0.15rem 0.45rem;
    border-radius: 5px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    display: inline-block;
    margin: 0 0.15rem;
}

/* ====================
   LISTA DE BENEFÍCIOS
   Sem card, sem blur — só tipografia limpa
==================== */
.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
    border-left: 1px solid var(--border);
    padding: var(--space-3);
    border-radius: 8px;
    box-shadow: 0px 0px 30px 10px rgba(255, 215, 0, 0.15);
}

.benefit-list li {
    font-size: 0.95rem;
    color: var(--text-soft);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.2s ease;
}

.benefit-list li:hover {
    color: var(--text-primary);
}

.benefit-list li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* ====================
   DIVISOR
==================== */
.divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin-bottom: var(--space-3);
}

/* ====================
   VSL SECTION
==================== */
.vsl-section {
    width: 100%;
    padding-top: var(--space-3);
    margin-bottom: var(--space-3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--surface);
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px var(--border),
        0px 0px 80px 20px rgba(255, 215, 0, 0.3);
}

.video-wrapper iframe,
.video-wrapper video,
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.vsl-click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    background: transparent;
}

/* Oculta o menu de 3 pontos nativo */
video::-webkit-media-controls-overflow-button,
video::-webkit-media-controls-overflow-menu-list {
    display: none !important;
}

/* Oculta apenas a barra de tempo/progresso nativa */
video::-webkit-media-controls-timeline,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display,
video::-webkit-media-controls-seek-back-button,
video::-webkit-media-controls-seek-forward-button {
    display: none !important;
}

.vsl-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.vsl-play-overlay.playing {
    opacity: 0;
    pointer-events: none;
}

.vsl-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(10, 10, 10, 0.85);
    border: 2px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    padding-left: 3px;
    transition: transform 0.2s ease;
}

.vsl-play-overlay:hover .vsl-play-icon {
    transform: scale(1.1);
}

.vsl-play-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vsl-fullscreen-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 25;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.vsl-fullscreen-btn:hover {
    background: rgba(255, 215, 0, 0.25);
    border-color: #FFD700;
    transform: scale(1.08);
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    color: var(--text-muted);
    gap: var(--space-2);
}

.play-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.play-button:hover {
    background: rgba(200,146,42,0.1);
    transform: scale(1.05);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent var(--accent);
    margin-left: 4px;
}

.video-label {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.audio-warning {
    text-align: center;
    font-size: 0.8rem;
    margin-top: var(--space-2);
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* ====================
   CTA SECTION
==================== */
.cta-section {
    width: 100%;
    text-align: center;
}

#delayed-cta:not(.hidden) {
    padding-top: var(--space-4);
    padding-bottom: var(--space-2);
}

.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cta-transition-text {
    font-size: 0.95rem;
    color: #E0E0E0;
    font-weight: 500;
    margin-bottom: var(--space-3);
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(180deg, #FFE600 0%, #FFA500 100%);
    color: #000000;
    text-decoration: none;
    padding: 1.1rem var(--space-4);
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 0px 40px 10px rgba(255, 215, 0, 0.4);
    animation: ctaGlowPulse 2.5s infinite ease-in-out;
}

.cta-button:hover {
    background: linear-gradient(180deg, #FFF04D 0%, #FFB31A 100%);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0px 0px 55px 16px rgba(255, 215, 0, 0.65);
}

@keyframes ctaGlowPulse {
    0%, 100% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 0px 30px 6px rgba(255, 215, 0, 0.35);
    }
    50% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 0px 50px 14px rgba(255, 215, 0, 0.6);
    }
}

.cta-button:active {
    transform: translateY(0);
}

.cta-main-text {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    color: #000000;
}

.cta-subtext {
    font-size: 0.78rem;
    font-weight: 500;
    margin-top: 0.35rem;
    color: rgba(0, 0, 0, 0.75);
    letter-spacing: 0.03em;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: var(--space-2);
    font-size: 0.8rem;
    color: #E0E0E0;
    font-weight: 500;
    letter-spacing: 0.04em;
    opacity: 0.95;
}

.security-note svg {
    color: #FFD700;
    flex-shrink: 0;
}

/* ====================
   ANIMAÇÃO DE ENTRADA
   Só uma — suave, sem exagero
==================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.headline-section {
    animation: fadeIn 0.7s ease-out both;
}

.vsl-section {
    animation: fadeIn 0.7s ease-out 0.2s both;
}

/* ====================
   RESPONSIVIDADE
==================== */
@media (max-width: 600px) {
    body {
        padding-top: 26px;
    }

    .top-bar {
        padding: 0.3rem 0.4rem;
        font-size: clamp(0.62rem, 3.1vw, 0.74rem);
        letter-spacing: 0.01em;
    }

    .top-bar-content {
        white-space: nowrap;
    }

    .container {
        padding: 0.6rem 0.8rem 1.5rem;
    }

    .headline-section {
        margin-bottom: 0.5rem;
    }

    .headline-section::before {
        margin-top: 0.5rem;
        margin-bottom: 0.4rem;
    }

    .eyebrow {
        font-size: 0.7rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .main-headline {
        font-size: clamp(1.4rem, 5vw, 1.75rem);
        line-height: 1.15;
        margin-bottom: 0.5rem;
    }

    .main-headline .light {
        color: #FFFFFF;
        -webkit-text-stroke: 1px #FFFFFF;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    }

    .sub-headline {
        font-size: 0.85rem;
        color: #E6E6E6;
        line-height: 1.4;
        margin-bottom: 0.6rem;
    }

    .video-notice-box {
        box-shadow: 0 0 16px 3px rgba(255, 215, 0, 0.35);
        padding: 0.6rem 0.8rem;
        margin-bottom: 0.6rem;
    }

    .notice-header {
        gap: 0.4rem;
        margin-bottom: 0.2rem;
    }

    .notice-title {
        font-size: 0.85rem;
    }

    .notice-subtitle {
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .notice-highlight {
        font-size: 0.84rem;
        padding: 0.08rem 0.3rem;
    }

    .benefit-list {
        box-shadow: 0px 0px 12px 4px rgba(255, 215, 0, 0.2);
        margin-bottom: 0.6rem;
        padding: 0.45rem 0.75rem;
        gap: 0.3rem;
    }

    .benefit-list li {
        color: #E0E0E0;
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .vsl-section {
        padding-top: 0.2rem;
        margin-bottom: 0.6rem;
    }

    .video-wrapper {
        box-shadow: 0 0 0 1px var(--border), 0px 0px 32px 8px rgba(255, 215, 0, 0.35);
    }

    .desktop-br {
        display: none;
    }

    .cta-transition-text {
        color: #E0E0E0;
        font-size: 0.88rem;
        font-weight: 500;
        opacity: 1;
        text-align: center;
    }

    .cta-button {
        padding: 0.9rem 1rem;
        width: 100%;
        max-width: 100%;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 0px 16px 4px rgba(255, 215, 0, 0.4);
        animation: ctaGlowPulseMobile 2.5s infinite ease-in-out;
    }

    .cta-main-text {
        font-size: 1.05rem;
        line-height: 1.25;
        text-align: center;
        max-width: 280px;
    }

    .cta-subtext {
        font-size: 0.75rem;
        color: rgba(0, 0, 0, 0.85);
        margin-top: 0.25rem;
    }

    .security-note {
        color: #E0E0E0;
        font-size: 0.78rem;
        font-weight: 500;
        opacity: 1;
        text-align: center;
    }

    .security-note svg {
        color: #FFD700;
    }
}

@keyframes ctaGlowPulseMobile {
    0%, 100% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 0px 12px 3px rgba(255, 215, 0, 0.35);
    }
    50% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0px 0px 20px 5px rgba(255, 215, 0, 0.55);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ====================
   NOTIFICAÇÃO FLUTUANTE DE VENDAS
==================== */
.sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    max-width: 350px;
}

.sales-notification.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 50%;
    flex-shrink: 0;
}

.notification-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    width: 100%;
}

.notification-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #E0E0E0;
    line-height: 1.2;
}

.notification-top-row strong {
    color: #FFFFFF;
    font-weight: 700;
}

.notification-action {
    color: #ABABAB;
    font-size: 0.76rem;
    font-weight: 400;
}

.notification-time {
    color: #6B6B6B;
    font-size: 0.68rem;
    font-weight: 400;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .sales-notification {
        position: fixed;
        bottom: 10px;
        left: 50%;
        right: auto;
        width: 90%;
        max-width: 360px;
        transform: translateX(-50%) translateY(60px);
        padding: 0.55rem 0.85rem;
        border-radius: 20px;
        gap: 0.6rem;
        pointer-events: none !important; /* Não bloqueia cliques nos botões da página */
    }

    .sales-notification.show {
        transform: translateX(-50%) translateY(0);
    }

    .sales-notification .notification-icon {
        width: 26px;
        height: 26px;
    }

    .sales-notification .notification-icon svg {
        width: 13px;
        height: 13px;
    }

    .sales-notification .notification-top-row {
        font-size: 0.72rem;
    }

    .sales-notification .notification-action {
        font-size: 0.70rem;
    }

    .sales-notification .notification-time {
        font-size: 0.65rem;
    }

    .footer-section {
        padding: var(--space-3) var(--space-2);
        margin-top: var(--space-1);
    }
}

/* ====================
   RODAPÉ / FOOTER
==================== */
.footer-section {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-3) var(--space-3);
    margin-top: var(--space-2);
    text-align: center;
    transition: margin-top 0.4s ease;
}

.footer-container {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.5;
}

.footer-disclaimer {
    font-size: 0.72rem;
    color: #4A4A4A;
    line-height: 1.65;
    font-weight: 300;
}
