/* CSS Variables for Warm, Empathetic Aesthetic (Mother to Mother) */
:root {
    --primary-color: #db2777; /* Warm Pink */
    --primary-hover: #be185d;
    --secondary-color: #fce7f3; /* Soft Pink */
    --accent-color: #f472b6; 
    --text-main: #334155; 
    --text-muted: #64748b; 
    --bg-white: #ffffff;
    --bg-light: #fff1f2; /* Very soft rose background */
    --bg-dark: #831843; /* Dark pink for contrast sections */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.05), 0 2px 8px -2px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 16px 32px -4px rgba(0, 0, 0, 0.08), 0 8px 16px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 24px 48px -12px rgba(219, 39, 119, 0.15); /* Pink tinted shadow */
    --shadow-glow: 0 0 24px rgba(219, 39, 119, 0.35);
    
    --transition: all 0.3s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
}

strong {
    font-weight: 700;
    color: var(--primary-color);
}

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

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.top-banner {
    background-color: #e11d48; /* Rose 600 */
    color: #ffffff;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 50;
    line-height: 1.5;
}

.top-banner span {
    display: inline-block;
    margin: 0 4px;
}

/* Base Padding for Sections */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 3rem;
    color: var(--text-main);
    position: relative;
    font-weight: 800;
    line-height: 1.3;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 16px auto 0;
    border-radius: var(--radius-full);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #22c55e; /* Green for high conversion */
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
    padding: 22px 40px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 480px;
    border: none;
    cursor: pointer;
    margin: 0 auto;
}

.cta-button:hover {
    background-color: #16a34a;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.slide-up { transform: translateY(40px); }
.zoom-in { transform: scale(0.95); }

/* 1. Hero Section */
.hero {
    background-color: var(--primary-color);
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 24px 24px;
    padding: 4rem 0 5rem;
    position: relative;
    color: white;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.headline {
    font-size: 2.5rem;
    margin: 0 auto;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    max-width: 850px;
}

.headline strong {
    color: #fde047; /* Yellow highlight to match reference image contrast */
}

.subheadline {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 15px auto 2.5rem auto; /* 15px top, auto sides, 2.5rem bottom */
    font-weight: 600; /* SemiBold */
    line-height: 1.6;
    max-width: 700px;
    text-align: center;
}

.subheadline strong {
    color: #ffffff;
    font-weight: 700;
}

/* Hero Image Box */
.hero-image-box {
    background: #ffffff;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 650px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 2px solid rgba(255,255,255,0.1);
}

.hero-image-header {
    background-color: var(--bg-dark); /* Dark pink/wine header */
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 14px 16px;
    letter-spacing: 0.5px;
}

.hero-image-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
}

.hero-mockup-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    margin-bottom: 15px;
}

.hero-carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.hero-carousel-dots .dot {
    width: 8px;
    height: 8px;
    background-color: #cbd5e1;
    border-radius: 50%;
}

.hero-carousel-dots .dot.active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

/* Hero CTA Button */
.cta-button-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #22c55e; /* Vivid Green */
    color: #ffffff; /* White text */
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    padding: 20px 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 0 #15803d, 0 15px 20px rgba(0,0,0,0.2);
    transition: all 0.1s ease;
    text-transform: uppercase;
    width: 100%;
    max-width: 550px;
    border: none;
    cursor: pointer;
    margin: 0 auto;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.cta-button-hero:active {
    transform: translateY(8px);
    box-shadow: 0 0 0 #15803d, 0 5px 10px rgba(0,0,0,0.2);
}

.hero-footer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 2rem;
    letter-spacing: 0.5px;
}

/* 2. Dor Section */
.dor {
    background-color: var(--bg-light);
}

.dor-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.dor-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 600;
}

.dor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.dor-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid #f43f5e;
}

.dor-card i {
    color: #f43f5e;
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.dor-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.dor-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* 3. Solução Section */
.solucao {
    background-color: var(--bg-white);
}

.solucao-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 991px) {
    .solucao-wrapper {
        grid-template-columns: 1fr;
    }
}

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

.solucao-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.solucao-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.solucao-list {
    margin-bottom: 2.5rem;
}

.solucao-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.solucao-list i {
    color: var(--primary-color);
}

/* 4. Benefícios */
.beneficios {
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--primary-color);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    color: var(--primary-color);
    width: 32px;
    height: 32px;
}

.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

/* 5. Bônus */
.bonus {
    background-color: var(--bg-white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9;
}

.bonus-img-wrap {
    background: var(--secondary-color);
    padding: 2rem;
    text-align: center;
}

.bonus-img-wrap img {
    max-width: 180px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.bonus-content {
    padding: 2rem;
}

.bonus-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bonus-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.bonus-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* 6. Oferta Única */
.oferta {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-hover) 100%);
    color: white;
}

.oferta .section-title {
    color: white;
}

.oferta .section-title::after {
    background: white;
}

.offer-card-single {
    background: white;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-main);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    position: relative;
}

.offer-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-includes {
    margin-bottom: 2rem;
    text-align: left;
}

.offer-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
}

.offer-includes i {
    color: #10b981;
}

.price-box {
    margin-bottom: 2rem;
}

.price-box .old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.price-box .new {
    color: var(--primary-color);
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    line-height: 1;
    margin-top: 0.5rem;
}

.price-box .currency { font-size: 1.5rem; font-weight: 700; margin-top: 0.5rem; margin-right: 5px; }
.price-box .amount { font-size: 5rem; font-weight: 800; letter-spacing: -2px; }
.price-box .cents { font-size: 2rem; font-weight: 800; margin-top: 0.5rem; }

/* 7. Garantia */
.garantia {
    background-color: var(--bg-light);
    text-align: center;
}

.garantia-content {
    max-width: 600px;
    margin: 0 auto;
}

.garantia-icon {
    width: 80px;
    height: 80px;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.garantia h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

/* Depoimentos */
.testimonials { background-color: var(--bg-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.testimonial-card { background: var(--bg-light); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); position: relative; border: 1px solid #f1f5f9; }
.quote-mark { position: absolute; top: 15px; left: 20px; font-size: 3rem; color: var(--primary-color); opacity: 0.1; font-family: serif; line-height: 1; }
.testimonial-text { font-size: 1rem; color: var(--text-main); font-style: italic; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; background: var(--accent-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.author-name { font-weight: 700; font-size: 0.95rem; }

/* FAQ */
.faq { background-color: var(--bg-white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 1rem; border-radius: var(--radius-md); background: var(--bg-light); overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 1.5rem; background: none; border: none; font-size: 1.1rem; font-weight: 600; color: var(--text-main); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; }
.faq-question i { transition: transform 0.3s ease; color: var(--primary-color); }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 1.5rem; }
.faq-answer p { padding-bottom: 1.5rem; color: var(--text-muted); }

/* Footer */
.footer {
    background-color: var(--text-main);
    color: #cbd5e1;
    padding: 3rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .top-banner { 
        font-size: 0.75rem; 
        padding: 8px 12px;
    }
    .hero .headline { 
        font-size: 1.55rem; 
        line-height: 1.3;
    }
    .hero .subheadline { 
        font-size: 1rem; 
        margin-top: 10px;
        margin-bottom: 1.8rem;
    }
    .headline { 
        font-size: 1.8rem; 
    }
    .cta-button {
        font-size: 1.05rem;
        padding: 18px 24px;
    }
    .cta-button-hero {
        font-size: 1.1rem;
        padding: 18px 20px;
    }
    .price-box .amount { 
        font-size: 4rem; 
    }
    .section-padding { 
        padding: 3.5rem 0; 
    }
    .dor-grid, .benefits-grid, .bonus-grid {
        gap: 1.5rem;
    }
}
