/* ===== VARIÁVEIS & RESET ===== */
:root {
    --primary-color: #0C2659;      /* Dark Blue */
    --primary-light: #163E8C;      /* Medium Blue */
    --secondary-color: #8C4A32;    /* Brown */
    --secondary-hover: #A35A3E;    /* Lighter Brown */
    --text-main: #123273;          /* Navy Blue */
    --text-muted: #6C757D;
    --bg-light: #D9D7D7;           /* Light Gray */
    --bg-white: #FFFFFF;
    --bg-dark: #0C2659;            /* Dark Blue */
    --danger: #DC3545;
    
    --font-main: 'Inter', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* ===== UTILITÁRIOS ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.text-primary { color: var(--primary-light); }

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* ===== BOTÕES ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #009c3b;
    color: #FFFFFF;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 156, 59, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #00b344;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 156, 59, 0.6);
}

.cta-button.large {
    font-size: 1.4rem;
    width: 100%;
    padding: 20px;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 156, 59, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 156, 59, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 156, 59, 0); }
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #123273 100%);
    color: var(--bg-white);
    padding: 100px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Pattern background */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23ffffff" fill-opacity="0.05"/></svg>');
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 90%;
}

.secure-checkout {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.floating {
    animation: float 6s ease-in-out infinite;
}

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

/* ===== PROBLEMA/SOLUÇÃO ===== */
.problem-solution {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.problem-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s;
    border-top: 4px solid var(--danger);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.icon-wrapper.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger);
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.solution-box {
    background: linear-gradient(to right, rgba(25, 135, 84, 0.05), rgba(25, 135, 84, 0.1));
    border-left: 5px solid var(--primary-light);
    padding: 40px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.solution-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.highlight {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(140, 74, 50, 0.3);
    z-index: -1;
}

/* ===== BENEFÍCIOS ===== */
.benefits {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.benefit-item i {
    font-size: 2rem;
    margin-top: 5px;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* ===== GARANTIA ===== */
.guarantee {
    padding: 80px 0;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.guarantee-badge {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.guarantee-text {
    flex: 1;
    max-width: 600px;
}

.guarantee-text h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

/* ===== MÓDULOS ===== */
.modules {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.module-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.module-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 20px 30px;
}

.module-number {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    font-weight: 700;
}

.module-header h3 {
    font-size: 1.5rem;
    margin-top: 5px;
}

.module-topics {
    list-style: none;
    padding: 30px;
}

.module-topics li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.module-topics li:last-child {
    margin-bottom: 0;
}

.module-topics li i {
    color: var(--secondary-color);
    margin-top: 5px;
}

/* ===== BÔNUS ===== */
.bonus {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.bonus-box {
    background-color: var(--bg-white);
    border: 2px dashed var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: var(--box-shadow);
}

.bonus-icon {
    font-size: 4rem;
    color: var(--secondary-color);
}

.badge-bonus {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.bonus-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.bonus-value {
    margin-top: 20px;
    font-size: 1.1rem;
}

.old-price-bonus {
    text-decoration: line-through;
    color: var(--text-muted);
}

.text-secondary { color: var(--secondary-color); }

/* ===== TIMER ===== */
.timer-box {
    background-color: rgba(220, 53, 69, 0.05);
    border: 2px dashed var(--danger);
    border-radius: var(--border-radius);
    padding: 15px;
}

.timer-title {
    color: var(--danger);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span:first-child {
    font-size: 2rem;
    font-weight: 800;
    color: var(--danger);
    line-height: 1;
}

.time-block span:last-child {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 600;
}

.time-block.separator {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--danger);
    margin-top: -15px;
}
.mb-3 { margin-bottom: 1.5rem; }

/* ===== TOP BAR TIMER ===== */
.top-bar-timer {
    background-color: #D32F2F; /* Vermelho Alerta */
    color: #fff;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
}

.timer-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-timer.small {
    gap: 8px;
}

.countdown-timer.small .time-block span:first-child {
    font-size: 1.4rem;
    color: #fff;
}

.countdown-timer.small .time-block span:last-child {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0;
}

.countdown-timer.small .time-block.separator {
    font-size: 1.2rem;
    color: #fff;
    margin-top: -3px;
}

/* ===== OFERTA ===== */
.offer {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 2px solid var(--primary-light);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(15, 81, 50, 0.15);
    position: relative;
    overflow: hidden;
}

.card-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.card-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.price {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.old-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.current-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.installment {
    font-size: 1rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-top: 5px;
}

.features-list {
    text-align: left;
    margin-bottom: 30px;
}

.features-list ul {
    list-style: none;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.features-list li i {
    color: var(--primary-light);
}

.secure-badges {
    max-width: 200px;
    opacity: 0.8;
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.accordion-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #fcfcfc;
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 25px 20px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--bg-dark);
    color: var(--bg-light);
    padding: 40px 0;
}

.footer .disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .secure-checkout {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .flex-center {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 3rem;
    }
}
