.elementor-5443 .elementor-element.elementor-element-1324359{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-5443 .elementor-element.elementor-element-1324359{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-5848a10 *//* Reset e Base */
* {
    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: #fff;
}

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #1e3a8a;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.btn-primary.btn-large {
    padding: 20px 50px;
    font-size: 1.3rem;
}

.btn-primary.btn-full {
    width: 100%;
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    background-color: #3b82f6;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #3b82f6;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #3b82f6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
        text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.section-intro {
    font-size: 1.15rem;
    color: #475569;
    text-align: center;
    margin-bottom: 15px;
}

.section-intro-bold {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 40px;
}

/* Biblioteca Section */
.biblioteca-section {
    background-color: #f8fafc;
}

.ebooks-wrapper {
    margin-bottom: 60px;
}

.ebooks-category {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 30px;
}

.ebooks-category-alt {
    font-size: 1.8rem;
    font-weight: 700;
    color: #eab308;
    margin-bottom: 30px;
}

.ebook-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ebook-card:hover {
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.15);
    transform: translateY(-4px);
}

.ebook-card-upcoming {
    border-left: 4px solid #eab308;
}

.ebook-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.ebook-description {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.7;
}

.ebook-features {
    list-style: none;
    margin-bottom: 30px;
}

.ebook-features li {
    font-size: 1.05rem;
    color: #334155;
    margin-bottom: 12px;
    padding-left: 10px;
}

.upcoming-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #eab308;
    margin: 20px 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    font-size: 1.5rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.feature-item p {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.6;
}

/* Diferenciais Section */
.diferenciais-section {
    background-color: #fff;
}

/* Para Quem Section */
.para-quem-section {
    background-color: #eff6ff;
}

.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 40px auto 0;
}

.benefits-list li {
    font-size: 1.15rem;
    color: #334155;
    padding: 20px 20px 20px 60px;
    margin-bottom: 15px;
    background: #fff;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 25px;
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Conteudo Section */
.conteudo-section {
    background-color: #fff;
}

/* Sobre Section */
.sobre-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
}

.sobre-section .section-title {
    color: #fff;
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
}

.sobre-content p {
    margin-bottom: 20px;
}

/* Como Funciona Section */
.como-funciona-section {
    background-color: #f8fafc;
}

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

.step-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 20px;
}

.step-text {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.6;
}

/* CTA Final Section */
.cta-final-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Captação Section */
.captacao-section {
    background-color: #eff6ff;
    padding: 80px 20px;
}

.captacao-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .btn-primary.btn-large {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .btn-primary.btn-full {
    width: 100%;
    text-align: center;
    padding: 10px 35px;
    font-size: 0.9rem;
    }
    
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-section {
        padding: 60px 20px;
    }

    section {
        padding: 50px 20px;
    }

    .ebook-card {
        padding: 25px;
    }
}/* End custom CSS */