/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0056b3; /* Azul Firme (Confiança) */
    --secondary-color: #28a745; /* Verde (Sucesso/Dinheiro) */
    --accent-color: #d4af37; /* Dourado (Credibilidade/Valor) */
    --bg-dark: #000000; /* Fundo Preto */
    --bg-card: #121212; /* Fundo dos Cards */
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --border-color: #333333;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--bg-dark);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: var(--text-white);
    padding: 15px;
    z-index: 1000;
    border-top: 1px solid var(--border-color);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    font-size: 14px;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-accept {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
}

.headline {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.subheadline {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
    color: var(--text-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* VSL Container */
.vsl-container {
    max-width: 850px;
    margin: 0 auto;
    border: 4px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 86, 179, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CTA Section */
.cta-section {
    margin-top: 20px;
}

.cta-button {
    background-color: var(--secondary-color);
    color: var(--text-white);
    border: none;
    padding: 22px 45px;
    font-size: 22px;
    font-weight: 900;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    width: 100%;
    max-width: 500px;
}

.cta-button:hover {
    transform: scale(1.02);
    background-color: #218838;
}

.cta-subtext {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-gray);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #050505;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--accent-color);
    text-transform: uppercase;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-gray);
}

.cta-button-large {
    background-color: var(--secondary-color);
    color: var(--text-white);
    border: none;
    padding: 25px 60px;
    font-size: 24px;
    font-weight: 900;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.5);
}

.cta-button-large:hover {
    transform: scale(1.05);
}

.secure-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: var(--text-gray);
}

/* Footer */
footer {
    background-color: #000;
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-info p {
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
}

.disclaimer {
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.4;
}

/* Páginas Internas */
.page-header {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 36px;
    color: var(--primary-color);
}

.page-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    color: var(--accent-color);
    margin: 40px 0 20px;
}

.page-content p, .page-content li {
    color: var(--text-gray);
    margin-bottom: 15px;
}

/* Formulário de Contato */
.contact-form {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-white);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #000;
    border: 1px solid var(--border-color);
    color: var(--text-white);
    border-radius: 4px;
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
    .headline {
        font-size: 28px;
    }
    
    .subheadline {
        font-size: 16px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 18px 30px;
    }
    
    .cta-button-large {
        font-size: 20px;
        padding: 20px 40px;
    }
    
    .secure-badges {
        flex-direction: column;
        gap: 10px;
    }
}
