/* --- GERAL E VARIÁVEIS (REMOVIDAS PARA CÓDIGOS DIRETOS) --- */
/* As variáveis foram comentadas ou removidas para usar os códigos hexadecimais diretos */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333333; /* --grafite */
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 3rem; font-weight: 900; }
h2 { font-size: 2.5rem; font-weight: 700; text-align: center; }
h3 { font-size: 1.5rem; font-weight: 700; }

.cta-button {
    display: inline-block;
    background-color: #FF8C00; /* Laranja para o CTA */
    color: #FFFFFF; /* Branco no texto do botão */
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


/* --- HEADER --- */
.header {
    background-color: #6C3483; /* Roxo vibrante */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-mascote img {
    height: 50px;
}
.header nav a {
    color: #FFFFFF; /* Branco */
    text-decoration: none;
    margin-left: 25px;
    font-weight: 700;
}

/* --- HERO SECTION --- */
.hero-section {
    background-color: #6C3483; /* Roxo vibrante */
    color: #FFFFFF; /* Branco */
    padding: 100px 0;
}
.hero-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-text { flex: 1; }
.hero-visual { flex: 1; text-align: center; }
.hero-visual .mascote-principal { max-width: 100%; height: auto; }
.hero-text h1 { color: #8BC34A; /* Verde vibrante */ }
.hero-text p { font-size: 1.2rem; margin-bottom: 30px; }

/* Nova classe para as caixas de CTA */
.cta-access-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}
.cta-access-box h3 {
    margin-bottom: 25px;
}
.cta-access-box ul {
    /* list-style-type: none; REMOVIDO para que os bullets padrão, se houvesse, apareçam. */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px; /* Espaçamento entre o botão e a lista */
    opacity: 0.8; /* Mantém a opacidade da lista toda (texto + ticks) */
}
/* REMOVIDO: .cta-access-box ul li { color: transparent; } para que os ticks voltem a aparecer */


/* --- HOW IT WORKS SECTION --- */
.how-it-works-section { background-color: #f4f4f4; /* Fundo claro */ }
.how-it-works-section h2 { color: #8BC34A; /* Verde vibrante */ }
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}
.step-card {
    text-align: center;
    flex-basis: 23%;
}
.step-icon {
    font-size: 3rem;
    font-weight: 700;
    color: #6C3483; /* Roxo vibrante */
}

/* --- BENEFITS SECTION --- */
.benefits-section {
    background-color: #3C4730; /* Verde musgo */
    color: #FFFFFF; /* Branco */
}
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}
.benefit-card {
    background-color: #FFFFFF; /* Branco */
    color: #333333; /* Grafite */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.benefit-card h3 { color: #6C3483; /* Roxo vibrante */ }

/* --- EXAMPLE SECTION --- */
.example-section { background-color: #6C3483; /* Roxo vibrante */ color: #FFFFFF; /* Branco */ }
.example-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(0,0,0,0.2);
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
}
.example-text { flex: 1; }
.example-visual { flex: 1; text-align: center; }
.example-visual img { max-width: 80%; border-radius: 10px; }
.example-text ul { list-style-type: none; margin-top: 20px; }
.example-text li { margin-bottom: 10px; }

/* --- URGENCY SECTION --- */
.urgency-section {
    background-color: #8BC34A; /* Verde vibrante */
    color: #FFFFFF; /* Branco */
    text-align: center;
}
.urgency-section .cta-access-box {
    background: rgba(0,0,0,0.1);
    margin-top: 30px;
}
.urgency-section .small-text {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}


/* --- FAQ SECTION --- */
.faq-section h2 { color: #8BC34A; /* Verde vibrante */ }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}
.faq-item h4 {
    color: #6C3483; /* Roxo vibrante */
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* --- FINAL CTA SECTION --- */
.final-cta-section {
    background-color: #6C3483; /* Roxo vibrante */
    color: #FFFFFF; /* Branco */
    text-align: center;
}
.final-access { max-width: 600px; margin: 30px auto 0; }
.final-access ul {
    /* list-style-type: none; REMOVIDO para que os bullets padrão, se houvesse, apareçam. */
    gap: 15px;
    margin-top: 30px; /* Espaçamento entre o botão e a lista final */
    opacity: 0.8; /* Mantém a opacidade da lista toda (texto + ticks) */
}
/* REMOVIDO: .final-access ul li { color: transparent; } para que os ticks voltem a aparecer */


/* --- FOOTER --- */
.footer {
    background-color: #3C4730; /* Verde musgo */
    color: #FFFFFF; /* Branco */
    text-align: center;
    padding: 40px 0;
}
.footer a { color: #8BC34A; /* Verde vibrante */ text-decoration: none; }

/* --- RESPONSIVIDADE PARA CELULARES --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    section { padding: 60px 0; }

    .header .container { flex-direction: column; gap: 15px; }
    .header nav a { margin: 0 10px; }

    .hero-layout { flex-direction: column; }
    .hero-text { text-align: center; }
    .cta-access-box ul { justify-content: center; }

    .steps-container { flex-direction: column; }
    
    .benefits-grid { grid-template-columns: 1fr; }
    
    .example-box { flex-direction: column; }
    
    .faq-grid { grid-template-columns: 1fr; }
}