/* Global Styles */
:root {
    --primary-color: #FFC1CC;
    --primary-dark: #ff9cae;
    --accent-color: #E0B09C;
    --text-color: #4A4A4A;
    --heading-color: #2D2D2D;
    --bg-color: #FAFAFA;
    --white: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.08);
    --border-radius: 20px;
    --font-family: 'Outfit', sans-serif;
    --gradient-bg: linear-gradient(135deg, #FFF0F3 0%, #FFFFFF 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: var(--gradient-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary-dark);
    /* background: linear-gradient(120deg, transparent 60%, var(--primary-color) 60%); */
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 4px;
}

/* Card Style */
.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-note {
    font-size: 1.2rem;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.app-mockup-container {
    max-width: 350px;
    margin: 1.5rem auto 2rem;
    padding: 0 15px;
}

.app-mockup-img {
    width: 100%;
    height: auto;
    border: 5px solid #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #7bed9f;
    /* Verde pastel */
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(123, 237, 159, 0.4);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    text-align: center;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 400px;
}

.cta-button:hover {
    background-color: #2ed573;
    /* Verde um pouco mais escuro para hover */
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(46, 213, 115, 0.5);
}

.cta-button.small {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    width: auto;
    min-width: 250px;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(123, 237, 159, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(123, 237, 159, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(123, 237, 159, 0);
    }
}

.promo-alert {
    color: #e74c3c;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero .headline {
    font-size: 2.2rem;
    /* Mobile optimized */
    margin-bottom: 1.5rem;
}

.hero .subheadline {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bullets {
    text-align: left;
    display: inline-block;
    list-style: none;
    margin-bottom: 2rem;
}

.hero-bullets li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.icon-check {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
}

.icon-check::after {
    content: '✓';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.offer-card {
    background: #fff;
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.new-price {
    color: #20d62c;
    /* Verde solicitado */
    font-weight: 800;
    font-size: 1.4rem;
}

.risk-free {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 0;
}

.microcopy {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
}

.social-proof {
    margin-top: 2rem;
    font-style: italic;
    color: #666;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 600px;
    text-align: center;
}

.social-headline {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
    max-width: 600px;
    line-height: 1.5;
}

.proof-img {
    width: 60px;
    /* Small avatar size */
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Sleeping Baby Illustration */
.sleeping-baby-container {
    position: relative;
    /* Changed from absolute */
    width: 320px;
    /* Increased from 250px */
    margin: 1rem auto;
    /* Center it */
    z-index: 10;
    pointer-events: none;
    background: transparent;
    /* Explicitly transparent */
}

/* Ensure it doesn't go off screen on smaller desktops */
@media (max-width: 1200px) {
    .sleeping-baby-container {
        /* No longer needed as it's centered inline */
        width: 220px;
    }
}

/* Mobile Adjustment for Baby */
@media (max-width: 768px) {
    .sleeping-baby-container {
        width: 240px;
        /* Increased from 180px */
        margin: 1rem auto;
    }

    .hero {
        overflow: visible;
        /* Allow overlap if needed */
    }
}

.baby-img {
    width: 100%;
    height: auto;
    /* filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1)); Replaced drop-shadow with mix-blend-mode for cleaner cutout look */
    animation: floating 4s ease-in-out infinite;
    mix-blend-mode: multiply;
    /* Makes white background disappear */
    border: 4px solid var(--primary-color);
    border-radius: 30px;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.zzz {
    animation: float-zzz 3s infinite ease-in-out;
    opacity: 0;
}

.z1 {
    animation-delay: 0s;
}

.z2 {
    animation-delay: 1s;
}

.z3 {
    animation-delay: 2s;
}

@keyframes float-zzz {
    0% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        transform: translate(15px, -20px) scale(1.2);
        opacity: 0;
    }
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Sections General */
section {
    padding: 60px 0;
}

/* Empathy Section */
.empathy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.empathy-card {
    text-align: center;
    font-weight: 600;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    /* Adjusted padding */
}

.card-image-top {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: block;
}

.empathy-message {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Mechanism Section */
.mechanism-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
    position: relative;
    padding-top: 3rem;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 193, 204, 0.5);
}

.step-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.highlight-box {
    text-align: center;
    margin-top: 2rem;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    display: inline-block;
    width: 100%;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    background: #fff;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

/* Audience Section */
.audience-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.audience-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.audience-list li {
    padding: 1rem;
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.audience-list li span {
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Course Content */
.course-content {
    background-color: #fff;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.module-card h3 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.content-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
}

/* Bonus Section */
.bonus-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.bonus-card {
    border: 1px dashed var(--primary-color);
}

.bonus-title {
    font-weight: 600;
}

.strikethrough {
    text-decoration: line-through;
    color: #999;
}

.bonus-price strong {
    color: #20d62c;
    /* Verde solicitado */
}

.highlight-bonus {
    background-color: #fdf2f4;
    border: 1px solid var(--primary-color);
}

.total-value {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
}

.today-value {
    color: #20d62c;
    /* Verde solicitado */
    font-weight: 700;
    font-size: 1.5rem;
}

/* Pricing Section */
.pricing {
    background-color: #fff5f7;
    padding-bottom: 80px;
}

.urgency-bar {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.progress-container {
    height: 10px;
    background-color: #eee;
    border-radius: 5px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-dark);
    border-radius: 5px;
}

.spots-left {
    font-size: 0.8rem;
    color: #777;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: flex-end;
    /* Align bottom */
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    background: #fff;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    /* Slight lift */
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge.basic {
    background: #95a5a6;
    /* Cinza para o plano básico */
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.missing-feature {
    color: #e74c3c;
    text-decoration: line-through;
    opacity: 0.8;
}

.price-display {
    font-size: 3rem;
    font-weight: 700;
    color: #20d62c;
    /* Verde solicitado */
    margin: 1rem 0;
}

.secure-badges {
    font-size: 0.75rem;
    color: #888;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Guarantee Section */
.guarantee-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
}

.shield-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

details {
    margin-bottom: 1rem;
}

summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
}

details[open] summary::after {
    content: '-';
}

details>p {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    color: #555;
}

.cta-container-bottom {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
footer {
    background: #fff;
    text-align: center;
    padding: 40px 0;
    font-size: 0.85rem;
    color: #888;
}

footer a {
    color: #666;
    text-decoration: none;
}

.disclaimer {
    max-width: 600px;
    margin: 0 auto 1rem;
    font-size: 0.75rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    text-align: center;
    transform: translateY(200%);
    transition: transform 0.3s ease-in-out;
    display: none;
    /* Hidden by default, shown by JS */
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta .cta-button {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-grid {
        align-items: center;
        flex-direction: column;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: scale(1);
    }

    .sticky-cta {
        display: block;
    }

    h1 {
        font-size: 1.8rem;
    }

    .hero {
        padding-top: 40px;
    }
}

/* Purchase Notification Bar */
.purchase-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    color: var(--text-color);
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 193, 204, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.purchase-bar strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #27ae60;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
    box-shadow: 0 0 0 rgba(39, 174, 96, 0.4);
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(39, 174, 96, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* Adjust body padding to not hide hero content */
body {
    padding-top: 35px;
    /* Height of the bar */
}