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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

header h2 {
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Seção Problema */
.problema {
    background: white;
    padding: 80px 0;
}

.problema h2 {
    font-size: 2.4em;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
}

.problema-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.problema-item {
    background: #fff3cd;
    border-left: 4px solid #ff6b6b;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.problema-item p {
    font-size: 1.1em;
    color: #333;
    font-weight: 500;
}

.problema-destaque {
    text-align: center;
    font-size: 1.4em;
    color: #1e3c72;
    font-weight: 600;
    margin-top: 40px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 20px 50px;
    font-size: 1.3em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(238, 90, 36, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    margin: 20px auto;
    display: block;
    max-width: 400px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.6);
}

.cta-section {
    text-align: center;
    padding: 40px 0;
}

/* Conteúdo */
.conteudo {
    background: #f8f9fa;
    padding: 80px 0;
}

.conteudo h2 {
    font-size: 2.4em;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
}

.capitulos {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.capitulo {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #2a5298;
}

.capitulo h3 {
    color: #1e3c72;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.capitulo p {
    font-size: 1.1em;
    color: #555;
}

/* Para Quem */
.para-quem {
    background: white;
    padding: 80px 0;
}

.para-quem h2 {
    font-size: 2.4em;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
}

.publico-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.publico-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
    box-shadow: 0 3px 15px rgba(102, 126, 234, 0.3);
}

/* Benefícios */
.beneficios {
    background: #f8f9fa;
    padding: 80px 0;
}

.beneficios h2 {
    font-size: 2.4em;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.beneficio-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.beneficio-card::before {
    content: "✓";
    display: block;
    font-size: 3em;
    color: #4caf50;
    margin-bottom: 15px;
}

.beneficio-card p {
    font-size: 1.1em;
    color: #333;
    font-weight: 500;
}

/* Dados */
.dados {
    background: #1e3c72;
    color: white;
    padding: 80px 0;
}

.dados h2 {
    font-size: 2.4em;
    text-align: center;
    margin-bottom: 50px;
}

.dados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.dado-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.dado-numero {
    font-size: 3em;
    font-weight: 700;
    color: #ffd93d;
    margin-bottom: 10px;
}

.dado-texto {
    font-size: 1.1em;
    line-height: 1.5;
}

/* Diferencial */
.diferencial {
    background: white;
    padding: 80px 0;
}

.diferencial h2 {
    font-size: 2.4em;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
}

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

.diferencial-item {
    background: #f8f9fa;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 5px solid #4caf50;
    font-size: 1.15em;
    color: #333;
}

/* Depoimentos */
.depoimentos {
    background: #f8f9fa;
    padding: 80px 0;
}

.depoimentos h2 {
    font-size: 2.4em;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
}

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

.depoimento-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: relative;
}

.depoimento-texto {
    font-size: 1.1em;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.depoimento-autor {
    font-weight: 600;
    color: #1e3c72;
    font-size: 1em;
}

/* Sobre a Autora */
.sobre-autora {
    background: white;
    padding: 80px 0;
}

.sobre-autora h2 {
    font-size: 2.4em;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
}

.autora-conteudo {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.autora-foto {
    text-align: center;
}

.autora-foto img {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.autora-info h3 {
    font-size: 1.8em;
    color: #1e3c72;
    margin-bottom: 15px;
}

.autora-info p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.autora-info h4 {
    font-size: 1.3em;
    color: #1e3c72;
    margin-top: 25px;
    margin-bottom: 15px;
}

.autora-info ul {
    list-style: none;
    padding-left: 0;
}

.autora-info ul li {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.autora-info ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* O Que Recebe */
.recebe {
    background: white;
    padding: 80px 0;
}

.recebe h2 {
    font-size: 2.4em;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
}

.recebe-lista {
    max-width: 700px;
    margin: 0 auto;
}

.recebe-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    font-size: 1.15em;
    color: #333;
    display: flex;
    align-items: center;
}

.recebe-item::before {
    content: "📦";
    font-size: 2em;
    margin-right: 20px;
}

/* FAQ */
.faq {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq h2 {
    font-size: 2.4em;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 50px;
}

.faq-lista {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-pergunta {
    font-size: 1.2em;
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-resposta {
    font-size: 1.05em;
    color: #555;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #1e3c72;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.aviso-legal {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95em;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header h2 {
        font-size: 1.1em;
    }

    .problema h2,
    .conteudo h2,
    .para-quem h2,
    .beneficios h2,
    .dados h2,
    .diferencial h2,
    .depoimentos h2,
    .sobre-autora h2,
    .recebe h2,
    .faq h2 {
        font-size: 1.8em;
    }

    .cta-button {
        font-size: 1.1em;
        padding: 18px 40px;
    }

    .problema-lista,
    .publico-lista,
    .beneficios-grid,
    .dados-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .autora-conteudo {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .autora-foto img {
        max-width: 220px;
    }
}

/* Animações */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

.cta-button:hover {
    animation: none;
}
