/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Premium Soft Maternity */
    --pink-soft: #ffe5ec;
    --pink-accent: #ff8fa3;
    --blue-soft: #e0fbfc;
    --blue-accent: #90e0ef;
    --yellow-soft: #fff3b0;
    --yellow-accent: #e09f3e;
    --green-soft: #d8f3dc;
    --green-accent: #74c69d;
    --purple-soft: #e0aaff;
    --purple-accent: #9d4edd;
    --orange-soft: #ffdfcc;
    --orange-accent: #f4a261;
    
    --bg-white: #ffffff;
    --bg-main: #fdfbf7; /* Very warm off-white */
    
    --text-main: #4a4a4a;
    --text-heading: #2b2b2b;
    --text-muted: #757575;
    --text-light: #9ca3af;
    
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-full: 99px;
    
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.03);
    --shadow-md: 0 12px 32px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.08);
    
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

strong {
    font-weight: 700;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-pink { color: var(--pink-accent); }
.text-blue { color: var(--blue-accent); }
.text-yellow { color: var(--yellow-accent); }
.text-green { color: var(--green-accent); }
.text-red { color: #ef4444; }
.text-purple { color: var(--purple-accent); }
.text-orange { color: var(--orange-accent); }
.text-muted { color: var(--text-muted); }

/* Background Utilities */
.bg-white { background-color: var(--bg-white); }
.bg-main { background-color: var(--bg-main); }
.bg-soft-blue { background-color: var(--blue-soft); }
.bg-soft-pink { background-color: var(--pink-soft); }
.bg-soft-yellow { background-color: var(--yellow-soft); }

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0 140px; /* Padding bottom maior para acomodar a nuvem */
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 48px;
    font-weight: 800;
}

/* Decorative Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}
.blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: var(--pink-soft); }
.blob-2 { top: 20%; right: -5%; width: 400px; height: 400px; background: var(--blue-soft); }
.blob-3 { top: 60%; left: 10%; width: 350px; height: 350px; background: var(--yellow-soft); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #ff8fa3; /* Rosa sólido limpo */
    color: white;
    border: 2px solid #2b2b2b; /* Borda escura para dar contraste moderno */
    box-shadow: 4px 4px 0px #2b2b2b; /* Sombra sólida premium */
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #2b2b2b;
}

.btn-primary:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px #2b2b2b;
}

.btn-secondary {
    background: white;
    color: var(--pink-accent);
    border: 2px solid var(--pink-accent);
}

.btn-secondary:hover {
    background: var(--pink-soft);
}

.btn-large {
    width: 100%;
    max-width: 500px;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Cloud Dividers (Fixed Transition Method) */
.cloud-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 20;
    transform: translateY(1px); /* Elimina gap de pixel */
}

.cloud-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.fill-white { fill: var(--bg-white); }
.fill-main { fill: var(--bg-main); }
.fill-blue { fill: var(--blue-soft); }
.fill-yellow { fill: var(--yellow-soft); }
.fill-pink { fill: var(--pink-soft); }

/* Hero Section */
.hero {
    padding: 100px 0 160px;
    background: radial-gradient(circle at 0% 0%, var(--pink-soft) 0%, transparent 60%);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinhado à esquerda */
    text-align: left;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    background: var(--pink-soft);
    color: var(--pink-accent);
}

.badge-accent {
    background: var(--blue-soft);
    color: var(--blue-accent);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

.hero h1 span {
    color: var(--pink-accent);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--yellow-soft);
    z-index: -1;
    border-radius: 4px;
}

.subheadline {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinhado à esquerda por padrão */
    gap: 12px;
    width: 100%;
}

.center-content {
    align-items: center;
    text-align: center;
}

.cta-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-image-wrapper {
    flex: 0.8;
    position: relative;
}

.image-backdrop {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--green-soft);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 8px solid white;
    box-shadow: var(--shadow-sm);
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 1s;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Opening Section */
.opening-section {
    padding: 40px 0 140px;
}

.highlight-box {
    background: var(--pink-soft);
    padding: 32px;
    border-radius: var(--radius-md);
    border-left: 6px solid var(--pink-accent);
    margin-top: 40px;
}

.highlight-box p {
    margin: 0;
    color: var(--text-heading);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Pain Points (Grid Cards) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 6px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.card-pink { border-top-color: var(--pink-accent); }
.card-pink .icon-circle { background: var(--pink-soft); color: var(--pink-accent); }

.card-yellow { border-top-color: var(--yellow-accent); }
.card-yellow .icon-circle { background: var(--yellow-soft); color: var(--yellow-accent); }

.card-blue { border-top-color: var(--blue-accent); }
.card-blue .icon-circle { background: var(--blue-soft); color: var(--blue-accent); }

.card-green { border-top-color: var(--green-accent); }
.card-green .icon-circle { background: var(--green-soft); color: var(--green-accent); }

.card-purple { border-top-color: var(--purple-accent); }
.card-purple .icon-circle { background: var(--purple-soft); color: var(--purple-accent); }

.card-orange { border-top-color: var(--orange-accent); }
.card-orange .icon-circle { background: var(--orange-soft); color: var(--orange-accent); }

/* Solution */
.solution-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.solution-content {
    flex: 1;
}

.solution-content h2 {
    font-size: 2.6rem;
    margin-top: 16px;
    margin-bottom: 32px;
}

.solution-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.categories-section {
    padding-top: 60px;
}

.categories-box {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 40px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}

.category-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.category-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: -2px;
}

.category-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.category-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: block;
}

.philosophy-quote {
    font-size: 1.3rem;
    color: var(--pink-accent);
    font-weight: 700;
    font-family: var(--font-heading);
}

.solution-image-wrapper {
    flex: 0.8;
}

.solution-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.benefit-item i {
    font-size: 28px;
    flex-shrink: 0;
}

/* Testimonials (Masonry feel) */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: start;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    color: var(--yellow-accent);
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 24px;
    color: var(--text-heading);
}

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

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

.testimonial-author div {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-heading);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Offer */
.offer-box {
    background: white;
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border: 3px solid var(--pink-soft);
}

.ribbon {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink-accent);
    color: white;
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(255, 143, 163, 0.4);
    white-space: nowrap;
}

.offer-list {
    margin: 40px 0;
}

.offer-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.offer-list li:last-child {
    border-bottom: none;
}

.offer-item-main {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.offer-item-main i {
    font-size: 36px;
    flex-shrink: 0;
}

.offer-item-main div {
    display: flex;
    flex-direction: column;
}

.offer-item-main strong {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.offer-item-main span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.offer-list .value {
    font-weight: 700;
    color: var(--text-light);
    white-space: nowrap;
    margin-left: 24px;
    font-size: 1.1rem;
}

.highlighted-bonus {
    background: var(--pink-soft);
    padding: 24px!important;
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.highlighted-bonus .value {
    color: var(--pink-accent);
}

.price-summary {
    text-align: center;
    margin: 48px 0;
    padding: 40px;
    background: var(--bg-main);
    border-radius: var(--radius-md);
}

.total-value {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.today-price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--text-heading);
}

.today-price strong {
    color: var(--green-accent);
    font-size: 4rem;
    display: block;
    line-height: 1.1;
    margin-top: 10px;
}

/* Guarantee */
.guarantee-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--bg-main);
    padding: 56px;
    border-radius: var(--radius-lg);
    border: 2px dashed #cbd5e1;
}

.guarantee-icon {
    font-size: 100px;
    color: var(--yellow-accent);
    flex-shrink: 0;
}

.guarantee-content h2 {
    margin-bottom: 16px;
}

.guarantee-content p {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

/* Urgency */
.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.urgency-item {
    text-align: center;
}

.urgency-item .number {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--pink-accent);
    margin: 0 auto 24px;
    box-shadow: var(--shadow-sm);
}

.urgency-item p {
    font-size: 1.1rem;
}

/* FAQ (Accordion) */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 24px 32px;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: var(--bg-main);
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--pink-accent);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 32px;
}

.accordion-item.active .accordion-content {
    padding: 0 32px 32px;
}

.accordion-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Final CTA */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.option-card {
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: left;
}

.option-card i {
    font-size: 56px;
    margin-bottom: 24px;
}

.option-card p {
    font-size: 1.1rem;
}

.option-bad {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.option-good {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    box-shadow: var(--shadow-md);
}

.final-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 48px;
    color: var(--text-heading);
}

.ps-section {
    max-width: 800px;
    margin: 80px auto 0;
    text-align: left;
    color: var(--text-muted);
}

.ps-section p {
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.philosophy-end {
    text-align: center;
    color: var(--pink-accent);
    margin-top: 60px;
    font-size: 1.8rem;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container, .solution-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }

    .cta-wrapper {
        align-items: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.4rem;
    }
    
    .categories-box {
        text-align: left;
    }
    
    .solution-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .philosophy-quote {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0 80px;
    }
    
    .hero {
        padding: 40px 0 100px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .option-card {
        padding: 32px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-box {
        padding: 32px 20px;
    }
    
    .offer-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 0;
    }
    
    .offer-list .value {
        margin-left: 0;
        align-self: flex-start;
        font-size: 1rem;
    }
    
    .today-price {
        font-size: 2rem;
    }

    .today-price strong {
        font-size: 2.8rem;
    }

    .cloud-divider svg {
        height: 40px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 16px 24px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
}

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

    .subheadline {
        font-size: 1.05rem;
    }

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

    .highlight-box {
        padding: 24px 16px;
    }

    .guarantee-icon {
        font-size: 80px;
    }

    .today-price strong {
        font-size: 2.4rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 14px 20px;
    }

    .badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .offer-box {
        border-width: 2px;
    }
}
