/* Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Removido para compatibilidade com Microsoft Clarity */
    /* -webkit-touch-callout: none; */
    /* -webkit-user-select: none; */
    /* -khtml-user-select: none; */
    /* -moz-user-select: none; */
    /* -ms-user-select: none; */
    /* user-select: none; */
}

html {
    overflow-y: auto; /* Permite rolagem vertical */
    overflow-x: hidden; /* Impede rolagem horizontal */
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden; /* Impede rolagem horizontal */
}

/* Modificado para compatibilidade com Microsoft Clarity */
img, video {
    /* pointer-events: none; */
    /* -webkit-touch-callout: none; */
    /* -webkit-user-select: none; */
    /* -khtml-user-select: none; */
    /* -moz-user-select: none; */
    /* -ms-user-select: none; */
    /* user-select: none; */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Animação de Pulso para Botões */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,59,59, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255,59,59, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,59,59, 0); }
}

/* Botão Pulsante */
.pulse-button {
    display: inline-block;
    background-color: #FF3B3B;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    margin: 20px auto;
    cursor: pointer;
    animation: pulse 2s infinite;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.pulse-button:hover {
    background-color: #ff1a1a;
}

.standard-button {
    display: inline-block;
    background-color: #FF3B3B;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    margin: 20px auto;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.standard-button:hover {
    background-color: #ff1a1a;
}

/* Página de Entrada (Landing) */
.landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.image-container {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Páginas do Funil */
.funnel-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #333;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #FF3B3B;
    border-radius: 5px;
    transition: width 0.5s ease;
}

.progress-text {
    margin-bottom: 30px;
    font-weight: bold;
}

.message-text {
    font-size: 1.5rem;
    margin: 20px 0;
    font-weight: bold;
}

/* Página Final com Planos */
.final-page {
    padding-bottom: 50px;
}

.privacy-block {
    background-color: #111;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 30px 0;
    line-height: 1.8;
}

.highlight {
    color: #FF3B3B;
}

.plans-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    max-width: 800px;
}

.plan-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-card p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.price {
    color: #FF3B3B;
    font-weight: bold;
}

.checkout-btn {
    width: 100%;
    max-width: 300px;
}

/* Página de Checkout */
.checkout-page {
    background-color: #111;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.checkout-summary, 
.checkout-form {
    margin-bottom: 40px;
}

.plan-details {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #222;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.payment-btn {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
}

/* Página de Agradecimento */
.thank-you-page {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background-color: #111;
    border-radius: 10px;
    padding: 40px 30px;
}

.success-message {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.access-info,
.privacy-reminder {
    margin-bottom: 30px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .message-text {
        font-size: 1.3rem;
    }
    
    .privacy-block {
        font-size: 16px;
        padding: 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .checkout-page,
    .thank-you-page {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .pulse-button,
    .standard-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .plan-card p {
        font-size: 1rem;
    }
}