/* Variáveis de cores - Paleta moderna e elegante */
:root {
    --primary-color: #3a86ff;
    --secondary-color: #121212;
    --background-color: #ffffff;
    --text-color: #333333;
    --accent-color: #f0f4f8;
    --gradient-primary: linear-gradient(135deg, #3a86ff, #4361ee);
    --shadow-soft: 0 10px 30px rgba(58, 134, 255, 0.1);
    --border-radius: 16px;
}

/* Estilos gerais do site */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Inter', 'SF Pro Display', -apple-system, sans-serif;
    overflow-x: hidden;
    padding-top: 60px;
    line-height: 1.6;
}

/* Estilos gerais para impedir zoom */
html, body {
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

/* Banner superior com contagem regressiva */
.deadline-banner {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 0;
    text-align: center;
    font-weight: 600;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1040;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border-bottom: none;
    box-shadow: 0 2px 15px rgba(58, 134, 255, 0.2);
}

/* Estilo do ícone do relógio no banner */
.deadline-banner i {
    color: white;
    font-size: 1.1rem;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Estilo do contador regressivo */
#countdown {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 14px;
    border-radius: 30px;
    margin-left: 8px;
    font-family: 'SF Mono', 'Roboto Mono', monospace;
    font-weight: 700;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Estilo dos números do contador */
#minutes, #seconds {
    min-width: 1.5em;
    display: inline-block;
    text-align: center;
}

/* Removendo estilos da navbar */
.navbar {
    display: none;
}

.navbar-brand, .navbar-logo, .navbar .container {
    display: none;
}

/* Container principal do vídeo */
.vsl-container {
    margin: 1.5rem auto;
    padding: 20px;
    margin-top: 60px;
}

/* Estilos do wrapper do vídeo */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.custom-video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.control-btn {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    color: white;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.control-btn i {
    color: white;
    font-size: 18px;
}

.control-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Estilos do vídeo */
.video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

/* Seção de chamada para ação */
.cta-section {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 15px 50px rgba(58, 134, 255, 0.25), 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.cta-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(58, 134, 255, 0.3), 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Estilo do título da seção CTA */
.cta-section h2 {
    color: var(--secondary-color);
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* Estilo do texto da oferta */
.offer-text {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Estilo do texto do bônus */
.bonus-text {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(58, 134, 255, 0.1);
    border-radius: 30px;
    display: inline-block;
}

/* Estilo do destaque no texto */
.highlight {
    color: #ff0000;
    font-weight: 700;
    animation: textGlow 2s infinite;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(255, 0, 0, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 0, 0, 0.8); }
    100% { text-shadow: 0 0 10px rgba(255, 0, 0, 0.5); }
}

/* Estilo do ícone do título */
.cta-section h2 i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Container dos métodos de pagamento */
.payment-container {
    max-width: 400px;
    margin: 0 auto;
}

/* Estilo do botão do Stripe */
stripe-buy-button {
    --button-height: 50px !important;
    --button-width: 100% !important;
    --button-border-radius: 12px !important;
    --button-font-weight: 600 !important;
    --button-font-size: 1.1rem !important;
}

/* Container dos ícones de pagamento */
.payment-methods {
    background: var(--accent-color);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* Estilo de cada método de pagamento */
.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    flex: 1;
    min-width: 0;
    transition: transform 0.3s ease;
}

/* Estilo dos ícones de pagamento */
.payment-method i {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

/* Estilo do texto dos métodos de pagamento */
.payment-method span {
    font-size: 0.8rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    font-weight: 500;
}

.payment-method:hover {
    transform: translateY(-5px);
}

.payment-method:hover i {
    color: var(--primary-color);
}

/* Estilo do contador de visualizações ao vivo */
.live-viewers {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 10;
    font-weight: 600;
}

.live-viewers i {
    color: var(--primary-color);
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

/* Container do botão do Telegram */
.telegram-container {
    margin-top: 25px;
    text-align: center;
}

/* Estilo do botão do Telegram */
.telegram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(45deg, #0088cc, #00a2ff);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.telegram-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

/* Estilo do ícone do Telegram */
.telegram-button i {
    font-size: 1.3rem;
}

/* Efeito de brilho no botão */
.telegram-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.telegram-button:hover::after {
    left: 100%;
}

/* Estilo do botão de pagamento principal */
.payment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff3a3a, #ff0000);
    color: white;
    padding: 22px 36px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.payment-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

/* Efeito de brilho no botão */
.payment-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.payment-button:hover::after {
    left: 100%;
}

/* Animação de pulsação para o botão vermelho */
@keyframes pulseRed {
    0% { box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3); }
    50% { box-shadow: 0 6px 30px rgba(255, 0, 0, 0.5); }
    100% { box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3); }
}

.payment-button {
    animation: pulseRed 2s infinite;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .vsl-container {
        margin-top: 50px;
        padding: 15px;
    }
    
    .video-wrapper {
        margin: 15px 0;
    }
    
    .payment-button, .telegram-button {
        padding: 16px 28px;
    }
    
    .live-viewers {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .cta-section {
        margin-top: 25px;
        padding: 2.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .vsl-container {
        margin-top: 45px;
        padding: 10px;
    }
    
    .video-wrapper {
        margin: 10px 0;
    }
    
    .payment-button, .telegram-button {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .live-viewers {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .cta-section {
        margin-top: 20px;
        padding: 2rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .bonus-text {
        font-size: 1rem;
        padding: 8px 16px;
    }
}

/* Estilo do popup de saída */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 15px 50px rgba(58, 134, 255, 0.2);
    border: 1px solid var(--accent-color);
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-content h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.popup-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.popup-content .highlight {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2em;
}

.popup-content .timer {
    font-size: 1.2rem;
    margin: 20px 0;
    color: var(--primary-color);
    font-weight: 700;
    background: rgba(58, 134, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.return-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(58, 134, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.return-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.4);
}

.return-button i {
    font-size: 1.2rem;
}

/* Efeito de brilho no botão */
.return-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.return-button:hover::after {
    left: 100%;
}

/* Estilo do popup de fim de vídeo */
.end-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.end-popup .popup-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 15px 50px rgba(58, 134, 255, 0.2);
    border: 1px solid var(--accent-color);
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.end-popup h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.end-popup p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.end-popup .highlight {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2em;
}

.end-popup .timer {
    font-size: 1.2rem;
    margin: 20px 0;
    color: var(--primary-color);
    font-weight: 700;
    background: rgba(58, 134, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
}

.end-popup .popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.end-popup .popup-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(58, 134, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.end-popup .popup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.4);
}

.end-popup .popup-button i {
    font-size: 1.2rem;
}

/* Efeito de brilho no botão */
.end-popup .popup-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.end-popup .popup-button:hover::after {
    left: 100%;
}

/* Animações do popup */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Melhorias na acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Melhorias no vídeo */
.video-wrapper {
    position: relative;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,0,0,0.1), rgba(0,0,0,0.3));
    pointer-events: none;
    z-index: 1;
}

/* Melhorias nos botões */
.payment-button, .telegram-button {
    position: relative;
    overflow: hidden;
}

.payment-button::after, .telegram-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.payment-button:hover::after, .telegram-button:hover::after {
    left: 100%;
}

/* Remoção de estilos dos selos de confiança */
.trust-badges,
.badge,
.badge i,
.badge span,
.badge small {
    display: none;
}

/* Ajustes para orientação paisagem */
@media (max-height: 500px) and (orientation: landscape) {
    .vsl-container {
        margin-top: 35px;
        max-width: 400px;
    }

    .video-wrapper {
        max-height: 50vh;
        padding-bottom: 40%;
    }

    .cta-section {
        padding: 0.8rem;
    }
}

/* Ajustes específicos para iPhone */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    video {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
    }
}

/* Ajustes específicos para Android */
@supports not (-webkit-touch-callout: none) {
    body {
        touch-action: manipulation;
    }
    
    video {
        touch-action: manipulation;
    }
}

/* Configuração da rolagem suave */
html {
    scroll-behavior: smooth;
}

/* Animação de rolagem */
@keyframes scrollAnimation {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Classe para elementos que devem aparecer durante a rolagem */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animações suaves */
.payment-button, .telegram-button, .cta-section {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Micro-interações */
.payment-method:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

/* Ajustes de tipografia */
h2, h3, h4 {
    font-family: 'Inter', -apple-system, sans-serif;
    letter-spacing: -0.02em;
}

/* Sistema de grid flexível */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Estilo do título VIP após a barra de tempo */
.vip-title-container {
    text-align: center;
    padding: 20px 15px;
    margin-top: 60px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.05), rgba(67, 97, 238, 0.1));
    border-radius: 12px;
}

.vip-title {
    color: var(--secondary-color);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.3;
    margin: 0;
    background: linear-gradient(135deg, #3a86ff, #4361ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(58, 134, 255, 0.2);
}

/* Ajustes responsivos para o título VIP */
@media (max-width: 768px) {
    .vip-title-container {
        margin-top: 50px;
        padding: 15px 10px;
    }
    
    .vip-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .vip-title-container {
        margin-top: 45px;
        padding: 12px 8px;
    }
    
    .vip-title {
        font-size: 1.5rem;
    }
}

/* Ajuste no container principal para acomodar o novo título */
.vsl-container {
    margin-top: 10px;
}

/* Estilo do botão de fechar popup */
.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(255, 59, 59, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
    font-weight: bold;
}

.close-popup:hover {
    background: #ff0000;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

/* Ajuste na posição relativa do popup-content para o botão de fechar */
.popup-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 15px 50px rgba(58, 134, 255, 0.2);
    border: 1px solid var(--accent-color);
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Ajuste específico para o popup de fim de vídeo */
.end-popup .popup-content {
    position: relative;
}

.end-popup .close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
}

