/* ==================== OVERLAY E FORMULÁRIO ==================== */




.form-container {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    max-width: 900px;
    width: 90%;
    text-align: center;
    position: absolute; /* Posiciona o formulário sobre a imagem */
    top: 15%; /* Ajusta para a parte superior, dando espaço para a copy */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; /* Garante que fique acima da imagem */
    transition: opacity 0.5s ease;
}

.form-container.hidden {
    display: none; /* Esconde o formulário por padrão */
}

.initial-copy {
    position: absolute;
    top: 30%; /* Posição centralizada na parte superior */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    max-width: 90%;
    transition: opacity 0.5s ease;
}

.initial-copy.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.confirmation-message.hidden {
    display: none !important;
}

.confirmation-message {
    text-align: center;
    padding: 20px;
}



.initial-copy h1 {
    font-size: 3.5rem;
    color: var(--light-text);
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 10px var(--neon-red);
}

.initial-copy .btn-premium {
    padding: 20px 60px;
    font-size: 1.5rem;
    box-shadow: 0 0 30px rgba(255, 23, 68, 0.7);
}

@media (max-width: 768px) {
    .initial-copy h1 {
        font-size: 2rem;
    }
    .initial-copy .btn-premium {
        padding: 15px 40px;
        font-size: 1.2rem;
    }
}

.form-step {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    min-height: 200px; /* Garante que o container não encolha muito */
    animation: fadeIn 0.4s ease-out;
}

.form-step.active {
    display: flex;
}

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

.form-step label {
    font-size: 1.8rem; /* Fonte ainda menor para um visual mais discreto */
    color: var(--light-text);
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8); /* Sombra branca para parecer mais "neon" */
    text-align: center;
    line-height: 1.2;
}

.form-step input[type="text"],
.form-step input[type="number"],
.form-step input[type="tel"],
.form-step select {
    width: 80%; /* Reduz a largura para centralizar melhor */
    max-width: 400px; /* Reduzido o max-width */
    padding: 10px; /* Reduzido o padding */
    margin-bottom: 20px; /* Reduzido a margem */
    border: none;
    border-bottom: 2px solid var(--neon-pink); /* Linha mais fina */
    border-radius: 0;
    background-color: transparent;
    color: var(--light-text);
    font-size: 1.2rem; /* Fonte ainda menor para o input */
    text-align: center;
    transition: border-color 0.3s ease;
}

.form-step input:focus,
.form-step select:focus {
    border-color: var(--neon-red);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
}

.form-step button {
    /* Estilos dos botões de navegação */
    background: transparent; /* Botão transparente */
    border: 2px solid var(--neon-red); /* Apenas borda */
    color: var(--neon-red);
    padding: 10px 25px; /* Reduzido o padding */
    border-radius: 8px;
    font-size: 0.9rem; /* Reduzido a fonte */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 8px;
    margin-top: 20px; /* Menos espaço */
}

.form-step button:hover {
    transform: translateY(-2px);
    background: var(--neon-red); /* Preenche ao passar o mouse */
    color: var(--light-text);
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.6);
}

.prev-btn {
    background: transparent !important;
    border: 2px solid var(--secondary-text) !important;
    color: var(--secondary-text) !important;
    opacity: 0.7;
}

.prev-btn:hover {
    background: var(--secondary-text) !important;
    color: var(--dark-bg) !important;
    opacity: 1;
    box-shadow: none;
}

.submit-btn {
    background: transparent !important;
    border: 2px solid var(--gold-accent) !important;
    color: var(--gold-accent) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5) !important;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: var(--gold-accent) !important;
    color: var(--dark-bg) !important;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.8) !important;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    display: none;
}

.checkbox-group label {
    background-color: rgba(26, 26, 26, 0.7);
    color: var(--secondary-text);
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid rgba(255, 23, 68, 0.3);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
}

.checkbox-group input[type="checkbox"]:checked + label {
    background-color: var(--neon-red);
    color: var(--light-text);
    border-color: var(--neon-red);
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.5);
}



@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }
    .form-step label {
        font-size: 1.5rem;
    }
    .form-step input[type="text"],
    .form-step input[type="number"],
    .form-step input[type="tel"],
    .form-step select {
        font-size: 1.2rem;
        width: 90%;
    }
    .form-step button {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    .checkbox-group label {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* ==================== RESET E VARIÁVEIS ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-red: #FF1744;
    --neon-pink: #FF4081;
    --dark-bg: #0A0A0A;
    --card-bg: #1A1A1A;
    --light-text: #FFFFFF;
    --secondary-text: #B0B0B0;
    --gold-accent: #D4AF37;
    --transition-speed: 0.3s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== SEÇÃO HERO COM LOGO GIGANTE ==================== */
.hero-logo {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A0A0A 50%, #0A0A0A 100%);
    position: relative;
    overflow: hidden;
}

.logo-image-hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    animation: logoEnter 0.8s ease-out;
}

@keyframes logoEnter {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==================== SEÇÃO DE TRANSIÇÃO COM DEGRADÊ ==================== */
.transition-section {
    height: 300px;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0) 0%,
        rgba(255, 23, 68, 0.08) 25%,
        rgba(255, 23, 68, 0.05) 50%,
        rgba(10, 10, 10, 0.3) 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.transition-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.6);
}

/* ==================== CONTEÚDO PRINCIPAL ==================== */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* ==================== SEÇÕES DE TICKET ==================== */
.ticket-section {
    margin-bottom: 100px;
    padding: 80px 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: sectionFadeIn 0.8s ease forwards;
    opacity: 0;
}

.low-ticket {
    animation-delay: 0.2s;
}

.medium-ticket {
    animation-delay: 0.4s;
}

.high-ticket {
    animation-delay: 0.6s;
}

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

.ticket-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.5);
}

/* LOW TICKET */
.low-ticket {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 23, 68, 0.2);
}

.low-ticket:hover {
    border-color: rgba(255, 23, 68, 0.4);
    box-shadow: inset 0 0 30px rgba(255, 23, 68, 0.05);
}

/* MEDIUM TICKET */
.medium-ticket {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(255, 23, 68, 0.3);
}

.medium-ticket:hover {
    border-color: rgba(255, 23, 68, 0.5);
    box-shadow: inset 0 0 30px rgba(255, 23, 68, 0.08);
}

/* HIGH TICKET */
.high-ticket {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.12) 0%, rgba(255, 64, 129, 0.08) 100%);
    border: 2px solid rgba(255, 23, 68, 0.5);
    box-shadow: inset 0 0 40px rgba(255, 23, 68, 0.1);
}

.high-ticket:hover {
    border-color: var(--neon-red);
    box-shadow: inset 0 0 50px rgba(255, 23, 68, 0.15), 0 0 30px rgba(255, 23, 68, 0.2);
}

/* ==================== CONTAINER DE PRODUTO ==================== */
.product-container {
    position: relative;
    z-index: 2;
}

.premium-container {
    max-width: 800px;
    margin: 0 auto;
}

/* ==================== HEADER DO PRODUTO ==================== */
.product-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--light-text);
    letter-spacing: 2px;
    font-weight: 900;
}

.price {
    font-size: 1.6rem;
    color: var(--neon-red);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
}

.promise {
    font-size: 1.2rem;
    color: var(--light-text);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* ==================== CONTEÚDO DO PRODUTO ==================== */
.product-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-benefits {
    width: 100%;
    margin-bottom: 50px;
}

.product-benefits h3 {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--light-text);
    text-align: center;
    font-weight: 700;
}

/* ==================== LISTA DE BENEFÍCIOS ==================== */
.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.benefits-list li {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255, 23, 68, 0.05);
    border-left: 3px solid var(--neon-red);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: rgba(255, 23, 68, 0.1);
    transform: translateX(10px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--neon-red);
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.benefit-text {
    flex: 1;
}

.benefit-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--light-text);
}

.benefit-text p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* BENEFÍCIOS PREMIUM */
.premium-benefits li {
    background: rgba(255, 23, 68, 0.08);
    border-left-color: var(--neon-pink);
}

.premium-benefits li:hover {
    background: rgba(255, 23, 68, 0.15);
}

/* ==================== BADGE PREMIUM ==================== */
.premium-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--neon-red), var(--neon-pink));
    color: var(--light-text);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.6);
    z-index: 10;
}

/* ==================== BOTÕES ==================== */
.btn {
    padding: 16px 50px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-red) 0%, var(--neon-pink) 100%);
    color: var(--light-text);
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 23, 68, 0.5), 0 0 30px rgba(255, 23, 68, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.7) 0%, rgba(255, 64, 129, 0.6) 100%);
    color: var(--light-text);
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--neon-red) 0%, var(--neon-pink) 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 23, 68, 0.5), 0 0 30px rgba(255, 23, 68, 0.6);
}

.btn-premium {
    background: linear-gradient(135deg, var(--neon-red) 0%, var(--neon-pink) 100%);
    color: var(--light-text);
    font-size: 1.2rem;
    padding: 18px 55px;
    box-shadow: 0 0 30px rgba(255, 23, 68, 0.5);
}

.btn-premium:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 23, 68, 0.6), 0 0 40px rgba(255, 23, 68, 0.7);
}

/* ==================== RODAPÉ ==================== */
.footer {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 23, 68, 0.05) 100%);
    border-top: 2px solid rgba(255, 23, 68, 0.3);
    padding: 50px 20px;
    text-align: center;
    color: var(--secondary-text);
    margin-top: 100px;
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 768px) {
    .product-header h2 {
        font-size: 2rem;
    }

    .price {
        font-size: 1.3rem;
    }

    .promise {
        font-size: 1rem;
    }

    .product-benefits h3 {
        font-size: 1.2rem;
    }

    .benefits-list {
        gap: 20px;
    }

    .benefits-list li {
        padding: 20px;
        gap: 15px;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .benefit-text strong {
        font-size: 1.1rem;
    }

    .ticket-section {
        padding: 50px 25px;
    }

    .btn {
        padding: 14px 40px;
        font-size: 1rem;
    }

    .btn-premium {
        padding: 16px 45px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .product-header h2 {
        font-size: 1.6rem;
    }

    .price {
        font-size: 1.1rem;
    }

    .promise {
        font-size: 0.9rem;
    }

    .product-benefits h3 {
        font-size: 1rem;
    }

    .benefits-list {
        gap: 15px;
    }

    .benefits-list li {
        padding: 15px;
        gap: 12px;
        flex-direction: column;
    }

    .benefit-icon {
        font-size: 1.8rem;
    }

    .benefit-text strong {
        font-size: 1rem;
    }

    .benefit-text p {
        font-size: 0.9rem;
    }

    .ticket-section {
        padding: 40px 15px;
        margin-bottom: 60px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .premium-badge {
        top: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 0.75rem;
    }
}










