:root {
    --primary-blue: #4A90E2;
    --primary-yellow: #F8D05D;
    --bg-light: #F9FAFB;
    --text-dark: #2C3E50;
    --text-muted: #5D6D7E;
    --accent-green: #27AE60;
    --white: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. Hero Section */
.hero {
    background: linear-gradient(135deg, #E3F2FD 0%, #FFFFFF 100%);
    padding: 40px 0;
    text-align: center;
}

.hero-labels {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.trust-badge {
    background: var(--white);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    color: var(--primary-blue);
}

.hero h1 {
    font-size: 2rem;
    color: #1A252F;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: #4A3A00;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(248, 208, 93, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.pulse {
    animation: pulse-kf 2s infinite;
}

@keyframes pulse-kf {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* Mockup Placeholders */
/* Mockup Placeholders */
.hero-visual {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    width: 320px;
    /* Tamanho base ideal */
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
    transform: rotate(-1deg);
    transition: transform 0.3s;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.02);
}

/* 2. Social Proof Strip */
.social-proof-strip {
    background-color: var(--bg-light);
    padding: 20px 0;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
}

.flex-strip {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

/* 3. For Whom */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #1A252F;
}

.grid-5-cols {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mini-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #F1F1F1;
}

.mini-icon {
    font-size: 1.5rem;
}

/* 4. Benefit Cards */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: left;
    border: 1px solid #F9FAFB;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-muted);
}

/* 5. Inclusive Section */
.inclusive-friendly {
    background: linear-gradient(135deg, #FFF9EB 0%, #FFFFFF 100%);
}

.inclusive-box {
    text-align: center;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px dashed #F8D05D;
}

.inclusive-box h2 {
    color: #A67C00;
    margin-bottom: 20px;
}

/* 6. What you get */
.content-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.content-item {
    background: #F0F7FF;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-blue);
}

/* 7. Pricing Table */
.pricing-table {
    background-color: var(--bg-light);
}

.plans-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.plan-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 2px solid transparent;
}

.plan-card.premium {
    border-color: var(--primary-blue);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.plan-header h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1A252F;
    font-family: 'Fredoka', sans-serif;
}

.plan-header small {
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 25px;
    display: block;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #F5F5F5;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    transition: 0.3s;
}

.premium-btn {
    background: var(--primary-blue);
    color: white;
}

/* 8. Testimonials */
.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testi-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.testi-avatar {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-info {
    margin-bottom: 15px;
}

.verify-badge {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #27AE60;
    margin-bottom: 4px;
}

.testi-stars {
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.testi-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.testi-card span {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

/* 9. Guarantee */
.guarantee-card {
    text-align: center;
    padding: 50px 30px;
    background: #E8F5E9;
    border-radius: var(--radius-lg);
    border: 2px solid #A5D6A7;
}

.guarantee-icon {
    margin-bottom: 20px;
}

.guarantee-icon img {
    max-width: 150px;
    height: auto;
}

/* 10. FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

details {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 10px 20px;
}

summary {
    font-weight: 700;
    cursor: pointer;
    padding: 10px 0;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    padding: 10px 0 20px;
    color: var(--text-muted);
}

/* 11. Final CTA */
.final-cta {
    text-align: center;
    background: var(--primary-blue);
    color: white;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.final-cta p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Popup */
.popup {
    position: fixed;
    bottom: 20px;
    left: -400px;
    background: white;
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: left 0.5s ease-in-out;
    max-width: 90vw;
}

.popup.show {
    left: 20px;
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.popup-avatar {
    font-size: 1.5rem;
}

.popup-text span {
    font-weight: 700;
    display: block;
    font-size: 0.9rem;
}

.popup-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.footer {
    padding: 40px 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Comparison Section */
.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.comp-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.comp-card.before {
    border-left: 6px solid #EB5757;
}

.comp-card.after {
    border-left: 6px solid #27AE60;
    background: linear-gradient(135deg, #F0FBF4 0%, #FFFFFF 100%);
}

.comp-card h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.comp-list {
    list-style: none;
}

.comp-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.comp-list .sad-icon::before {
    content: '❌';
}

.comp-list .happy-icon::before {
    content: '✅';
}

/* Mental Grouping for What You Get */
.mental-blocks {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mental-block {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    border: 1px solid #F0F0F0;
}

.mental-block h3 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium Plan Focus */
.plan-card.premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.15);
    transition: 0.3s;
}

/* Desktop optimization */
@media (min-width: 768px) {
    .container {
        max-width: 900px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .mini-card {
        flex: 1;
        text-align: center;
        flex-direction: column;
        padding: 30px 15px;
    }

    .grid-5-cols {
        flex-direction: row;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .plans-container {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
    }

    .plan-card {
        flex: 1;
        max-width: 350px;
    }

    .testimonial-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .flex-strip {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

    .comparison-grid {
        flex-direction: row;
    }

    .hero-image {
        width: 400px;
    }
}