/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f7f7f7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tipografia e Cores */
h1, h2 {
    font-weight: 700;
    color: #1e3a8a; /* Azul escuro */
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.subtitle {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #555;
}

.highlight-blue {
    color: #3b82f6; /* Azul do site original */
}

.highlight-orange {
    color: #ea580c; /* Laranja do site original */
}

/* Botões */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #ea580c; /* Laranja */
    color: white;
}

.btn-primary:hover {
    background-color: #c2410c;
}

.btn-secondary {
    background-color: transparent;
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.btn-secondary:hover {
    background-color: #eff6ff;
}

.full-width {
    width: 100%;
}

/* Seção Principal (Hero) */
.section-hero {
    background-color: white;
    padding: 4rem 0;
}

.tag-gratis {
    display: inline-block;
    background-color: #eff6ff;
    color: #3b82f6;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-content .text-content {
    flex: 1;
}

.hero-content .image-content {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content .main-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-content .ebook-preview {
    position: absolute;
    z-index: 10;
    left: 20%;
    top: -15%;
    transform: translate(-50%, 0);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.hero-content .ebook-preview img {
    display: block;
    width: 150px;
    height: auto;
}

.actions {
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
}

.trust-icons span {
    display: inline-block;
    margin-right: 1.5rem;
    font-size: 0.9rem;
    color: #555;
}

/* Seção O que Você Vai Aprender */
.section-learn {
    padding: 4rem 0;
    background-color: #f7f7f7;
}

.grid-learn {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.grid-learn .card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.grid-learn .card:hover {
    transform: translateY(-5px);
}

.grid-learn .card h3 {
    color: #1e3a8a;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Seção Conteúdo Completo e CTA Box */
.section-content {
    padding: 4rem 0;
    background-color: white;
}

.grid-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.topics-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.topics-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="%233b82f6"><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>') no-repeat left 5px;
    background-size: 16px;
    padding-left: 25px;
    margin-bottom: 10px;
}

/* CTA Box Lateral */
.cta-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.cta-box .cta-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    color: #ea580c;
}

.cta-box h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-box ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.cta-box ul li {
    margin-bottom: 0.5rem;
    color: #3b82f6;
    font-weight: 600;
}

.security-note {
    font-size: 0.75rem;
    color: #999;
    margin-top: 1rem;
}


/* Seção Depoimentos */
.section-testimonials {
    padding: 4rem 0;
    background-color: #f7f7f7;
}

.grid-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    border-top: 5px solid #3b82f6;
}

.testimonial-card .quote {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
    quotes: "“" "”" "‘" "’";
}

.testimonial-card .quote:before {
    content: open-quote;
    font-size: 3rem;
    color: #3b82f6;
    line-height: 0;
    position: absolute;
    top: 10px;
    left: 10px;
}

.testimonial-card h4 {
    margin-top: 1rem;
    color: #1e3a8a;
}

.testimonial-card small {
    display: block;
    color: #999;
    margin-bottom: 0.5rem;
}

.stars {
    color: gold;
    font-size: 1.1rem;
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 2rem 0;
    border-top: 1px solid #ddd;
}

.stats-bar > div {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ea580c;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #555;
}

/* Seção Formulário */
.section-form {
    padding: 4rem 0;
    background-color: #fff;
    text-align: center;
}

.form-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-trust-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* Rodapé */
.site-footer {
    background-color: #1e3a8a; /* Azul escuro */
    color: white;
    padding-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #3b82f6;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-info {
    margin-top: 1rem;
    font-weight: 600;
}

.footer-links h4 {
    color: #3b82f6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: #ea580c;
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Media Queries para Responsividade */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-content .image-content {
        margin-top: 2rem;
    }

    .hero-content .ebook-preview {
        left: 50%;
        top: -20px;
        transform: translate(-50%, 0);
    }

    .grid-content {
        grid-template-columns: 1fr;
    }

    .cta-box {
        order: -1; /* Move a caixa CTA para o topo em telas menores */
    }

    .grid-testimonials {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .trust-icons span {
        display: block;
        margin: 0.5rem 0;
    }

    .grid-learn {
        grid-template-columns: 1fr;
    }

    .form-group {
        flex-direction: column;
    }
}