/* Definições Globais e Reset */
:root {
    --bg-dark: #0a0e1a; /* Fundo principal muito escuro */
    --text-light: #f0f0f0; /* Texto claro */
    --primary-color: #007bff; /* Azul primário (pode ajustar) */
    --secondary-color: #6a1a8c; /* Cor de realce roxa */
    --cta-green: #4caf50; /* Verde para CTAs (Buy Buttons) */
    --font-family: 'Arial', sans-serif; /* Use a fonte que desejar */
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Base Typography */
h1, h2, .price {
    font-weight: bold;
    color: white;
}
h1 { font-size: 2.8em; margin-top: 0; }
h2 { font-size: 2em; margin-top: 40px; }

/* Botões CTA */
.cta-main, .cta-price, .cta-form {
    background-color: var(--cta-green);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.cta-main:hover, .cta-price:hover, .cta-form:hover {
    background-color: #388e3c;
}

/* 1. Hero Section */
.hero-section {
    background: var(--bg-dark);
    /* Adicione aqui a imagem de fundo ou gradiente da sua LP */
    background-image: radial-gradient(circle at 50% 0, rgba(106, 26, 140, 0.3) 0%, transparent 70%);
    padding: 80px 0 40px;
}
.video-placeholder {
    margin-top: 40px;
    background: #000;
    height: 350px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    /* Apenas um placeholder visual */
}

/* 2. Access Section (Ao que vai ter acesso) */
.access-section {
    padding: 60px 0;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

/* 3. Revolution Section (Galeria de Imagens) */
.revolution-section {
    padding: 60px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.gallery-item {
    background: #1a1e2a;
    height: 150px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 4. Pricing Section */
.pricing-section {
    padding: 60px 0;
}
.investment-box {
    background: var(--secondary-color); /* Roxo do seu design */
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    font-size: 1.3em;
}
.price-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.price-card {
    background: #1a1e2a;
    border-radius: 10px;
    padding: 30px;
    min-width: 250px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.price-card.twelve-months {
    background: var(--secondary-color); /* Realce para o plano de 12 meses */
    box-shadow: 0 0 30px rgba(106, 26, 140, 0.5);
}
.price {
    font-size: 3em;
    margin: 10px 0;
}
.duration {
    font-size: 1.2em;
    color: #ccc;
}
.cta-price {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

/* 5. NOVA SECÇÃO: FORMULÁRIO DE CAPTURA DE LEAD */
.lead-capture-section {
    background-color: #1a1e2a; /* Fundo ligeiramente mais claro que o principal */
    padding: 50px 0;
    margin-top: 40px;
}
.form-headline {
    font-size: 1.8em;
    margin-bottom: 30px;
}
.inline-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}
.inline-form input[type="text"],
.inline-form input[type="email"] {
    padding: 12px 15px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-size: 1em;
    flex-grow: 1;
    min-width: 150px;
}
.cta-form {
    flex-shrink: 0;
}

/* --- ESTILOS ESPECÍFICOS PARA A PÁGINA DE OBRIGADO --- */
.thank-you-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh; /* Ocupa a maior parte da altura do ecrã */
    padding: 60px 0;
}

.thank-you-box {
    background-color: #1a1e2a; /* Fundo ligeiramente claro para contraste */
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.thank-you-box h1 {
    color: var(--cta-green); /* Verde de sucesso */
    font-size: 2.5em;
    margin-bottom: 20px;
}

.next-steps {
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    text-align: left;
}

.next-steps h3 {
    color: var(--text-light);
    margin-top: 0;
}

.next-steps ol {
    list-style-position: inside;
    padding-left: 0;
}

.next-steps li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.back-button {
    margin-top: 30px;
    background-color: var(--primary-color); /* Retorna ao Azul primário */
}

.back-button:hover {
    background-color: #0056b3;
}

/* Responsividade (Ajuste para telemóveis) */
@media (max-width: 768px) {
    .price-cards {
        flex-direction: column;
        align-items: center;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .inline-form {
        flex-direction: column;
        gap: 10px;
    }
    .inline-form input {
        width: 100%;
    }
}
