:root {
    --violeta-profundo: #2D1159;
    --preto-onix: #121212;
    --vermelho-escarlate: #B91C1C;
    --dourado-ambar: #E8B923;
    --branco: #FFFFFF;
    --cinza-claro: #F3F4F6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
}

body {
    background: var(--violeta-profundo);
    color: var(--branco);
    line-height: 1.6;
}

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

header {
    background: var(--preto-onix);
    padding: 20px 0;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--branco);
    font-weight: 800;
    line-height: 1.2;
}

.subheadline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dourado-ambar);
    font-weight: 600;
}

.hero-image {
    width: 100%;
    max-width: 700px;
    margin: 30px auto;
    display: block;
    border: 3px solid var(--dourado-ambar);
    border-radius: 10px;
}

.author-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 30px;
}

.author-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--dourado-ambar);
}

.author-bio {
    max-width: 600px;
    padding: 20px;
    background: rgba(45, 17, 89, 0.8);
    border-radius: 10px;
}

section {
    padding: 40px 0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dourado-ambar);
}

p {
    margin-bottom: 20px;
    font-size: 18px;
}

.highlight {
    font-weight: 700;
    color: var(--dourado-ambar);
}

.testimonial {
    background: rgba(18, 18, 18, 0.7);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid var(--vermelho-escarlate);
}

.science-section {
    background: linear-gradient(rgba(45, 17, 89, 0.9), rgba(18, 18, 18, 0.9));
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

.benefits-list {
    list-style: none;
    margin: 20px 0 40px;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    color: var(--dourado-ambar);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.bonus-section {
    background: rgba(18, 18, 18, 0.8);
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    border: 2px solid var(--dourado-ambar);
}

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

.bonus-item {
    background: rgba(45, 17, 89, 0.7);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.bonus-image {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 20px;
    display: block;
}

.program-steps {
    margin: 30px 0;
}

.step-box {
    background: rgba(18, 18, 18, 0.8);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--dourado-ambar);
}

.step-box h3 {
    color: var(--dourado-ambar);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step-box ul {
    list-style: none;
    margin-left: 15px;
}

.step-box li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.step-box li:before {
    content: "•";
    color: var(--dourado-ambar);
    position: absolute;
    left: 0;
}

.cta-button {
    display: block;
    background: var(--vermelho-escarlate);
    color: var(--branco);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 20px 40px;
    text-align: center;
    border-radius: 50px;
    margin: 40px auto;
    max-width: 500px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid var(--branco);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background: #d42020;
}

.guarantee-section {
    text-align: center;
    margin: 40px 0;
}

.guarantee-box {
    background: rgba(18, 18, 18, 0.7);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--dourado-ambar);
    margin: 20px 0;
}

.faq-section {
    margin: 60px 0;
}

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

.faq-question {
    font-weight: 700;
    color: var(--dourado-ambar);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.final-cta {
    background: linear-gradient(rgba(185, 28, 28, 0.9), rgba(45, 17, 89, 0.9));
    padding: 60px 0;
    text-align: center;
}

.choices-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.choice-box {
    background: rgba(18, 18, 18, 0.7);
    padding: 25px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
}

.choice-box h3 {
    color: var(--dourado-ambar);
    margin-bottom: 15px;
}

.ps-section {
    font-style: italic;
    border-left: 3px solid var(--dourado-ambar);
    padding-left: 20px;
    margin: 30px 0;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background-color: #1e1e2e;
    margin: 50px auto;
    padding: 30px;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    border: 2px solid #d4af37;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
    color: #e6e6e6;
}

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

.modal-title {
    color: #d4af37;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #3a3a4a;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #d4af37;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #ffffff;
}

.modal p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal p strong {
    color: #d4af37;
}

footer {
    background: var(--preto-onix);
    padding: 30px 0;
    text-align: center;
}

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

.footer-link {
    color: var(--branco);
    text-decoration: none;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--dourado-ambar);
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .subheadline {
        font-size: 1.3rem;
    }
    
    .author-section {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-button {
        font-size: 1.3rem;
        padding: 15px 30px;
    }
    
    .choices-section {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-content {
        width: 90%;
        margin: 30px auto;
        padding: 20px;
    }
} 