/* style.css */

/* --- CONFIGURAÇÕES GLOBAIS E VARIÁVEIS --- */
:root {
    --color-background: #000000;
    --color-text: #FFFFFF;
    --color-red: #FF0000;
    --color-green-cta: #32FF9A;
    --color-green-check: #05FF00;
}

body {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.6;
}

/* --- ESTRUTURA E CONTAINER --- */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

section {
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

/* --- ESTILOS DE TEXTO --- */
p {
    margin-bottom: 1.5em;
}

h1, h2, h3 {
    font-weight: 900;
    margin-bottom: 1em;
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

.text-red {
    color: var(--color-red);
}

.text-underline {
    text-decoration: underline;
}

.title-highlight {
    text-transform: uppercase;
}

/* --- COMPONENTES --- */
.author-image {
    max-width: 150px;
    border-radius: 50%;
    margin: 30px auto;
    border: 3px solid var(--color-red);
}

.product-cover {
    max-width: 450px;
    margin: 30px auto;
    display: block;
}

.cta-button {
    background-color: var(--color-green-cta);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 8px;
    text-transform: uppercase;
    display: inline-block;
    margin: 20px auto;
    border: 2px solid var(--color-green-cta);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--color-green-cta);
}

.cta-button-large {
    font-size: 1.5rem;
    padding: 20px 40px;
}

.checklist {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    margin-bottom: 30px;
}

.checklist li {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%2305FF00" d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 24px;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin: 40px 0;
}

.testimonials-grid img {
    width: 100%;
    border-radius: 8px;
}

/* --- SEÇÕES ESPECÍFICAS --- */
.modules-list {
    list-style: none;
    padding: 0;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.module-item img {
    max-width: 150px;
    height: auto;
    flex-shrink: 0;
}

.bonus-section .bonus-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 50px 0;
    text-align: left;
}

.bonus-section .bonus-item img {
    max-width: 200px;
}

.price-evaluation {
    font-size: 1.2rem;
    margin-top: 20px;
}

.price-old {
    text-decoration: line-through;
}

.price-free {
    color: var(--color-green-check);
    font-weight: 700;
    font-size: 1.5rem;
}

.offer-section .pricing {
    margin: 40px 0;
}

.offer-section .price-from {
    font-size: 1.5rem;
    text-decoration: line-through;
}

.offer-section .price-label {
    font-size: 1.2rem;
    margin: 0;
}

.offer-section .price-main {
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-green-cta);
    line-height: 1;
}

.final-checklist li {
    font-size: 1rem;
    background-size: 20px;
    padding-left: 30px;
}

/* --- ESTILOS ADICIONAIS (IMAGEM 11.png) --- */

/* --- SEÇÃO FINAL DE PROVA SOCIAL --- */
.final-pitch-section p {
    font-size: 1.8rem;
    font-weight: 700;
}

.social-proof-final {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 700;
}

.social-proof-final .avatars {
    display: flex;
}

.social-proof-final .avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -15px;
}

.social-proof-final .avatars img:first-child {
    margin-left: 0;
}

.social-proof-final .stars {
    color: #FFD700; /* Dourado */
}

.arrow-down {
    font-size: 2rem;
    color: #555;
    margin-bottom: 30px;
}


/* --- RODAPÉ --- */
footer {
    background-color: #111;
    color: #aaa;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    margin: 5px 0;
}

footer .footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: #fff;
}

/* --- AJUSTE RESPONSIVO PARA A NOVA SEÇÃO --- */
@media (max-width: 768px) {
    .final-pitch-section p {
        font-size: 1.5rem;
    }
    .social-proof-final {
        flex-wrap: wrap; /* Permite que os itens quebrem a linha em telas menores */
    }
}

/* --- RESPONSIVIDADE PARA CELULARES --- */
@media (max-width: 768px) {
    body {
        font-size: 18px;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .container {
        padding: 20px 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .module-item, .bonus-section .bonus-item {
        flex-direction: column;
        text-align: center;
    }

    .checklist {
        text-align: left;
        display: block;
    }
}