:root {
    --primary: #1D4ED8;
    --secondary: #FF6B81;
    --green: #22C55E;
    --yellow: #FBBF24;

    --text: #1F2937;
    --background: #F8FAFC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Nunito', sans-serif;
    background: var(--background);
    color: var(--text);
    overflow-x: hidden;
}

section {
    padding: 90px 0;
}

.container {
    max-width: 1200px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: #DBEAFE;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title-left {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-description {
    color: #6B7280;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero {
    padding-top: 120px;
    padding-bottom: 180px;
    position: relative;
    background: linear-gradient(135deg, #f8fafc, #eef6ff);
    overflow: hidden;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
}

.hero h1 span {
    color: #FF6B81;
}

.hero p {
    margin: 30px 0;
    font-size: 20px;
    line-height: 1.8;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    border-radius: 50px;
}

.badge-custom {
    display: inline-block;
    background: #E0E7FF;
    color: #1D4ED8;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-whatsapp {
    background: #22C55E;
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-top: 30px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.problemas {
    background: #ffffff;
}

.problem-card {
    background: white;
    padding: 35px 25px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    height: 100%;
    transition: .3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, .08);
}

.problem-icon {
    font-size: 40px;
    color: var(--primary);
}

.problem-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.problem-card p {
    color: #6B7280;
    line-height: 1.7;
}

.como-funciona {
    background: #f8fafc;
}

.step-card {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    transition: .3s;
}

.step-card:hover {
    transform: translateY(-8px);
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    font-size: 24px;
    font-weight: 800;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.step-card p {
    color: #6B7280;
    line-height: 1.7;
}

.beneficios {
    background: white;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
}

.benefit-item span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #DCFCE7;
    color: #16A34A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-image-wrapper {
    position: relative;
}

.benefits-image {
    width: 100%;
    border-radius: 40px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 18px;
    font-weight: 700;
    box-shadow: 0 10px rgba(0, 0, 0, .08);
}

.card-blue {
    top: 30px;
    left: -20px;
}

.card-yellow {
    bottom: 100px;
    right: -20px;
}

.card-green {
    bottom: 20px;
    left: 30px;
}

.sobre {
    background: #f8fafc;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.about-text {
    font-size: 18px;
    line-height: 1.9;
    color: #4B5563;
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.highlight-item {
    background: white;
    padding: 18px;
    border-radius: 18px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.depoimentos {
    background: #ffffff;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 30px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    transition: .3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-card p {
    color: #6B7280;
    line-height: 1.9;
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user h5 {
    margin: 0;
    font-weight: 800;
}

.testimonial-user span {
    color: #9CA3AF;
    font-size: 14px;
}

.avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.faq {
    background: #f8fafc;
}

.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.faq-question {
    width: 100%;
    border: none;
    background: white;
    text-align: left;
    padding: 25px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

.faq-answer {
    padding: 0 25px 25px;
    color: #6B7280;
    line-height: 1.8;
    display: none;
}

.faq-answer.active {
    display: block;
}

.cta-final {
    background: linear-gradient(135deg, #1D4ED8, #3B82F6);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    padding: 12px 12px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-final h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.cta-final p {
    font-size: 20px;
    line-height: 1.8;
    opacity: .9;
    margin-bottom: 35px;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.cta-item {
    background: rgba(255, 255, 255, .12);
    padding: 15px;
    border-radius: 15px;
}

.cta-button {
    display: inline-block;
    background: #22C55E;
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    transition: .3s;
}

.cta-button:hover {
    background: #16A34A;
    transform: translateY(-3px);
    color: white;
}

.cta-image {
    width: 100%;
    border-radius: 40px;
}

.cta-image-wrapper {
    position: relative;
}

.floating {
    position: absolute;
    background: white;
    color: #111827;
    padding: 15px 20px;
    border-radius: 18px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.floating-1 {
    top: 20px;
    left: -20px;
}

.floating-2 {
    top: 50%;
    right: -20px;
}

.floating-3 {
    bottom: 20px;
    left: 20px;
}

.footer {
    background: #0F172A;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer h3 {
    font-weight: 800;
    margin-bottom: 10px;
}

.footer p {
    opacity: .8;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

.whatsapp-float i {
    color: #25D366;
}
[data-aos] {
    overflow-x: hidden;
}

@media (max-width: 765px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 40px;
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .section-title-left {
        font-size: 32px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .cta-benefits {
        grid-template-columns: 1fr;
    }

    .cta-final h2 {
        font-size: 36px;
    }

    .cta-final p {
        font-size: 18px;
    }

    .floating, .floating-card {
        display: none;
    }

    .hero-image, .benefits-image, .about-image, .cta-image {
        margin-top: 30px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 26px;
        right: 20px;
        bottom: 20px;
    }
}