:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --light-color: #93c5fd;
    --ultra-light-color: #dbeafe;
    --text-color: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --white2: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --bg-gradient: linear-gradient(135deg, var(--ultra-light-color), var(--white));
    --header-gradient: linear-gradient(135deg, #00aeb1, #0083da);
    --cta-gradient: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    --cta-gradient2: linear-gradient(135deg, #079251, #0dce47);
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --gray-100: #d3dee9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
}

[data-theme="dark"] {
    --primary-color: #3b82f6;
    --secondary-color: #60a5fa;
    --light-color: #1e40af;
    --ultra-light-color: #1e293b;
    --text-color: #e2e8f0;
    --text-light: #94a3b8;
    --white: #0f172a;
     --white2: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --bg-gradient: linear-gradient(135deg, #0f172a, #1e293b);
    --header-gradient: linear-gradient(135deg, #1e40af, #3b82f6);
    --cta-gradient: linear-gradient(135deg, #3b82f6, #1e40af);
    --cta-gradient2: linear-gradient(135deg, #079251, #0dce47);
    --border-color: #334155;
    --gray-100: #1e293b;
    --gray-200: #334155;
    --gray-300: #475569;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Impede a rolagem horizontal */
    max-width: 100%;    /* Garante que não exceda a largura da viewport */
    position: relative; /* Adiciona esta linha */
}

.container {
    max-width: 1200px; /* Define um limite máximo de largura */
    width: 90%;       /* Garante que ocupe toda a largura disponível */
    margin: 0 auto;    /* Centraliza o container */
    padding: 0 0px;   /* Adiciona espaçamento interno para evitar tocar as bordas */
    box-sizing: border-box; /* Inclui padding e border na largura total */
}

/* Theme Toggle */
.theme-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 1.3rem;
    background-color: transparent;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: none;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(30deg);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.0rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.4rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn i {
    margin-left: 8px;
}

.btn-primary {
    background: var(--cta-gradient2);
    color: #FFF;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: #FFF;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--ultra-light-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--ultra-light-color);
}

.btn-cta {
    background: var(--cta-gradient);
    color: var(--white);
    padding: 15px 30px;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-block {
    display: block;
    width: 400px;
    max-width: 90%;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--header-gradient);
    padding: 0;
    color: var(--white);
    overflow: hidden;
}


.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.logo i {
    margin-right: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--light-color);
}

.xxx {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.mobile-menu-btn {
    position: absolute;
    top: 10px;
    left: 15px;
    width: 30px;
    height: 30px;
    font-size: 1.3rem;
    background-color: transparent;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: none;
    transition: all 0.3s ease;
}






.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Status Bar */
.status-bar {
    background-color: var(--white);
    padding: 40px 0;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: center; /* Centraliza os itens horizontalmente */
    align-items: center; /* Centraliza os itens verticalmente (opcional) */
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stats-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.stats-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stats-item p {
    color: var(--text-light);
    margin: 0;
}

.status-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: var(--gray-100);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--header-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 1.8rem;
    color: var(--white);
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    margin: 0;
}

/* Problem Section */
.problem-section {
    background-color: var(--gray-100);
    padding: 80px 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.problem-text h2 {
    margin-bottom: 30px;
}

.check-list {
    list-style-type: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--text-light);
}

.check-list i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 3px;
}

.problem-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Content Section */
.content-section {
    background-color: var(--white);
    padding: 80px 0;
}

.chapters-container {
    max-width: 900px;
    margin: 0 auto;
}

.chapter-card {
    background-color: var(--gray-100);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chapter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.chapter-number {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--header-gradient);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 0 10px 0 10px;
}

.chapter-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 15px 0;
    padding-right: 60px;
}

.chapter-card p {
    color: var(--text-light);
}

.see-more-chapters {
    text-align: center;
    margin: 30px 0;
}

.hidden-chapters {
    display: none;
}

.show-text, .hide-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hide-text {
    display: none;
}

.expanded .show-text {
    display: none;
}

.expanded .hide-text {
    display: flex;
}

/* CTA Section */
.cta-section {
    background: var(--cta-gradient);
    padding: 80px 0;
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white2);
}

.cta-content h2 {
    color: var(--white2);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--white2);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--gray-100);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 120px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--white);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--gray-100);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--success-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.premium-card {
    background: linear-gradient(135deg, var(--gray-100), var(--white));
    border: 2px solid var(--secondary-color);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-value {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 5px 0;
}

.period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-features {
    margin-bottom: 30px;
    display: flex;
    justify-content: center; /* Centraliza o conteúdo horizontalmente */
}

.pricing-features ul {
    list-style-type: none;
    padding: 0; /* Remove o padding padrão da lista */
    margin: 0; /* Remove a margem padrão da lista */
    text-align: left; /* Alinha o texto à esquerda */
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-light);
}

.pricing-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.pricing-cta {
    margin-top: 20px;
    display: flex;
    justify-content: center; /* Centraliza o conteúdo horizontalmente */
}

.guarantee-box {
    display: flex;
    align-items: center;
    background-color: var(--ultra-light-color);
    padding: 30px;
    border-radius: 10px;
    max-width: 900px;
    margin: 50px auto 0;
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-right: 30px;
}

.guarantee-text h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.guarantee-text p {
    color: var(--text-light);
    margin: 0;
}

.tamanho-img {
    width: 100%; /* Define a largura do contêiner como 100% */
    max-width: 600px; /* Define um tamanho máximo para o contêiner (ajuste conforme necessário) */
    margin: 0 auto; /* Centraliza o contêiner na página */
}

.tamanho-img img {
    width: 100%; /* A imagem ocupará 100% da largura do contêiner */
    height: auto; /* Mantém a proporção da imagem */
    display: block; /* Remove espaços extras abaixo da imagem */
}

/* Classe para redimensionar a imagem */
.img-responsiva {
    width: 100%; /* A imagem ocupará 100% da largura do contêiner pai */
    height: auto; /* Mantém a proporção da imagem */
    max-width: 600px; /* Define um tamanho máximo para a imagem (ajuste conforme necessário) */
    display: block; /* Remove espaços extras abaixo da imagem */
}

/* FAQ Section */
.faq-section {
    background-color: var(--gray-100);
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.faq-question h4 {
    margin: 0;
    color: var(--primary-color);
}

.faq-icon {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Final CTA Section */
.final-cta-section {
    background: var(--bg-gradient);
    padding: 80px 0;
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.final-cta-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.final-cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    color: var(--text-light);
    font-size: 1.5rem;
}

.final-review {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.stars {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p {
    color: var(--light-color);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: var(--light-color);
}

.newsletter-form button {
    padding: 12px 15px;
    background-color: var(--secondary-color);
    border: none;
    border-radius: 0 5px 5px 0;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--light-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }


    .status-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .problem-text {
        order: 1;
    }

    .problem-image {
        order: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px;
        z-index: 100;
        box-shadow: var(--shadow);
    }
    
    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
    }

    .benefits-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .status-bar .container {
        grid-template-columns: 1fr;
    }
}