/* ===================================
   RESET E VARIÁVEIS GLOBAIS
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0052cc;
    --secondary-color: #ffd700;
    --dark-bg: #0a1428;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* ===================================
   TIPOGRAFIA E BASE
   =================================== */

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* ===================================
   BARRA DE SEGURANÇA
   =================================== */

.security-bar {
    background: linear-gradient(135deg, #0a1428 0%, #1a3a52 100%);
    color: #ffffff;
    padding: 12px 0;
    font-size: 0.9rem;
    border-bottom: 3px solid var(--secondary-color);
}

.security-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.security-badge i {
    color: var(--secondary-color);
}

/* ===================================
   HEADER
   =================================== */

.header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--primary-color);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    background: linear-gradient(135deg, #0052cc 0%, #0a1428 100%);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    color: var(--secondary-color) !important;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.cta-button {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffed4e 100%);
    color: var(--text-dark);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.trust-indicators {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.trust-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    font-size: 4rem;
    gap: 20px;
}

.image-placeholder p {
    font-size: 1.2rem;
    margin: 0;
}

/* ===================================
   PROBLEMA E SOLUÇÃO
   =================================== */

.problem-solution {
    padding: 80px 0;
    background: var(--light-bg);
}

.problem-solution h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.problem-grid, .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card, .solution-card {
    background: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.problem-card:hover, .solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.problem-card i, .solution-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.problem-card i {
    color: var(--danger-color);
}

.solution-card i {
    color: var(--success-color);
}

.problem-card h3, .solution-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.solution-divider {
    text-align: center;
    padding: 40px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    margin: 40px 0;
}

.solution-divider h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

/* ===================================
   BENEFÍCIOS
   =================================== */

.beneficios {
    padding: 80px 0;
    background: #ffffff;
}

.beneficios h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.beneficio-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.beneficio-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052cc 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 2rem;
}

.beneficio-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.beneficio-card p {
    color: var(--text-light);
}

/* ===================================
   O QUE VOCÊ RECEBE
   =================================== */

.o-que-voce-recebe {
    padding: 80px 0;
    background: var(--light-bg);
}

.o-que-voce-recebe h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.categoria-card {
    background: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
}

.categoria-card.bonus {
    border-left-color: var(--secondary-color);
    background: linear-gradient(135deg, #fffbf0 0%, #fff9e6 100%);
}

.categoria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.categoria-numero {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.categoria-card.bonus .categoria-numero {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.categoria-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.categoria-card ul {
    list-style: none;
    text-align: left;
}

.categoria-card li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid #e0e0e0;
}

.categoria-card li:last-child {
    border-bottom: none;
}

.categoria-card li::before {
    content: '✓ ';
    color: var(--success-color);
    font-weight: 700;
    margin-right: 8px;
}

/* ===================================
   GARANTIA
   =================================== */

.garantia {
    padding: 80px 0;
    background: linear-gradient(135deg, #0052cc 0%, #0a1428 100%);
    color: #ffffff;
    text-align: center;
}

.garantia-content {
    max-width: 600px;
    margin: 0 auto;
}

.garantia-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.garantia h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.garantia p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.garantia-highlight {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 20px;
}

/* ===================================
   CHECKOUT
   =================================== */

.checkout {
    padding: 80px 0;
    background: var(--light-bg);
}

.checkout-card {
    background: #ffffff;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.checkout-card h2 {
    color: var(--text-dark);
    margin-bottom: 30px;
}

.price-section {
    margin: 40px 0;
    padding: 30px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.price-original {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    text-decoration: line-through;
    color: var(--text-light);
}

.price-original .value {
    font-size: 1.3rem;
}

.price-divider {
    text-align: center;
    margin: 20px 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.price-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid #e0e0e0;
}

.price-final .label {
    font-weight: 700;
    color: var(--text-dark);
}

.price-final .value {
    font-size: 2.5rem;
    color: var(--success-color);
    font-weight: 700;
}

.payment-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-bg);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    color: var(--text-dark);
    font-weight: 500;
}

.payment-option i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.checkout-button {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffed4e 100%);
    color: var(--text-dark);
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    text-decoration: none;
}

.checkout-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.checkout-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.checkout-note i {
    color: var(--success-color);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.badge i {
    font-size: 1.5rem;
    color: var(--success-color);
}

/* ===================================
   FAQ
   =================================== */

.faq {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #e0e0e0;
}

.faq h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    background: var(--light-bg);
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: #e9ecef;
    border-color: var(--primary-color);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    padding: 20px;
    display: none;
    color: var(--text-light);
}

.faq-answer.active {
    display: block;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--dark-bg);
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    color: #e0e0e0;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: #e0e0e0;
    transition: var(--transition);
}

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

/* ===================================
   RESPONSIVIDADE
   =================================== */

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .nav {
        gap: 15px;
        font-size: 0.9rem;
    }

    .security-container {
        gap: 15px;
    }

    .trust-indicators {
        gap: 15px;
    }

    .checkout-card {
        padding: 30px 20px;
    }

    .security-badges {
        gap: 10px;
    }

    .footer-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button, .checkout-button {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
    }

    .price-final .value {
        font-size: 2rem;
    }

    .checkout-card {
        padding: 20px 15px;
    }
}
