/* RESET & GLOBAL */
:root {
    --color-dusty-pink: #E91E63;
    --color-deep-rose: #C2185B;
    --color-blush-pink: #F48FB1;
    --color-peachy-pink: #FCE4EC;
    --color-text-dark: #9C4D6B;
    --color-white: #FFFFFF;
    --color-gray: #757575;
    --color-black: #1A1A1A;
    --color-graphite: #2C2C2C;
    --color-gold: #FFB300;
    --color-green: #4CAF50;
    --color-green-hover: #43A047;

    --font-serif: 'Yeseva One', serif;
    --font-sans: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: var(--font-sans);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    transition: 0.3s ease;
    text-decoration: none;
}

/* HEADER FIXO */
.header-fixed {
    background-color: var(--color-dusty-pink);
    color: var(--color-white);
    padding: 16px 0;
    /* Increased slightly from 12px */
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.2);
}

.custom-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-fixed p {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    /* Increased slightly */
    letter-spacing: 1px;
    animation: header-pulse 2s infinite ease-in-out;
}

@keyframes header-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* HERO SECTION */
.hero-section {
    margin-top: 56px;
    /* Adjusted for taller header - slightly reduced to avoid gap */
    background: var(--color-peachy-pink);
    /* Solid color */
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.hero-container {
    position: relative;
    padding: 0;
    min-height: auto;
}

.hero-img-desktop,
.hero-img-mobile {
    width: 100%;
    height: auto;
    display: block;
}

.hero-img-mobile {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 800px;
    padding-left: 80px;
    width: 100%;
    text-align: left;
    margin: 0;
    display: block;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-content h2 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 24px;
    max-width: 600px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-subheadline {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 22px;
    color: var(--color-white);
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    border-bottom: none;
    border-left: 3px solid rgba(255, 255, 255, 0.8);
    padding-left: 16px;
    padding-bottom: 0;
    display: block;
}

.cta-button {
    display: inline-block;
    background: var(--color-dusty-pink);
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
    padding: 22px 64px;
    border-radius: 40px;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.25);
    margin-top: 32px;
    transition: 0.3s ease;
    animation: btn-pulsing-glow 2s infinite;
}

@keyframes btn-pulsing-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(233, 30, 99, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}

.cta-button:hover {
    background: var(--color-deep-rose);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.35);
}

/* MARQUEE */
.marquee-container {
    background: #E91E63;
    padding: 24px 0;
    /* Increased padding */
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
    font-size: 18px;
    /* Increased from 14px */
    color: white;
}

.marquee-content span {
    margin-right: 5px;
    /* Minimal space for seamless loop */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* SESSÃO 2 - A VERDADE */
.truth-section {
    padding: 80px 0;
    background: #FCE4EC;
    /* Light Pink */
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Limit particles */
}

/* Particles Container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(233, 30, 99, 0.4);
    /* Pinkish particles */
    border-radius: 50%;
    opacity: 0;
    animation: float-up 15s infinite linear;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-10vh) scale(1.5);
        opacity: 0;
    }
}

.truth-section h3 {
    position: relative;
    z-index: 2;
    /* Above particles */
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 42px;
    color: #C2185B;
    /* Deep Pink */
    margin-bottom: 50px;
    line-height: 1.3;
}

.truth-grid {
    position: relative;
    z-index: 2;
    /* Above particles */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.truth-block {
    flex: 1;
    min-width: 320px;
    max-width: 550px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* BLOCK 1 - PROBLEM */
.problem-block {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.truth-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 24px;
    align-self: flex-start;
}

.problem-badge {
    background: #757575;
}

.truth-block h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: var(--font-sans);
}

.problem-block h4 {
    color: #424242;
}

.truth-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.truth-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
}

.problem-list li {
    color: #616161;
}

.problem-list .x-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    stroke: #757575;
    stroke-width: 2.5;
    margin-right: 12px;
    margin-top: 2px;
    fill: none;
}

.problem-stat-box {
    background: #F5F5F5;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-top: auto;
}

.stat-big {
    font-size: 22px;
    font-weight: 800;
    color: #757575;
    margin-bottom: 6px;
}

.stat-small {
    font-size: 15px;
    color: #616161;
}

/* BLOCK 2 - SOLUTION */
/* BLOCK 2 - SOLUTION */
.solution-block {
    background: #E91E63;
    /* Solid Deep Pink */
    border: 2px solid #C2185B;
    /* Slightly darker border */
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    color: white;
}

.solution-badge {
    background: #FFFFFF;
    color: #E91E63;
}

.solution-block h4 {
    color: #FFFFFF;
}

.solution-intro {
    font-size: 16px;
    color: #FFFFFF;
    /* White */
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}

.solution-list li {
    color: #FFFFFF;
    /* White */
    font-weight: 500;
}

.solution-list .check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    stroke: #FFFFFF;
    /* White stroke */
    stroke-width: 2.5;
    margin-right: 12px;
    margin-top: 2px;
    fill: none;
}

/* BLOCK 3 - FINAL MESSAGE */
.truth-final-message {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.truth-final-message p {
    font-size: 18px;
    color: #C2185B;
    font-weight: 600;
    margin: 6px 0;
    text-align: center;
}

/* SESSÃO 3 - BENEFÍCIOS */
.benefits-section {
    padding: 100px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.floating-petal {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    max-width: none;
    /* Keep original size as requested */
}

.petal-1 {
    top: -50px;
    left: -50px;
    opacity: 0.9;
    animation: float-simple 6s ease-in-out infinite;
}

.petal-2 {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    animation: float-center 8s ease-in-out infinite;
}

.petal-3 {
    bottom: -50px;
    left: 10%;
    animation: float-simple 7s ease-in-out infinite 1s;
}

@keyframes float-simple {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@keyframes float-center {

    0%,
    100% {
        transform: translateY(-50%) rotate(0deg);
    }

    50% {
        transform: translateY(calc(-50% - 20px)) rotate(-3deg);
    }
}

.grid-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* Ensure content is above petals */
}

.benefits-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.benefits-intro h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 42px;
    color: var(--color-black);
    /* Changed to black */
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight-underline {
    position: relative;
    display: inline-block;
    color: var(--color-deep-rose);
    background-color: #ffc2d4;
    /* Pink marker background */
    text-decoration: none;
    padding: 0 8px;
    border-radius: 4px;
}

.benefits-intro p {
    font-size: 20px;
    color: #444;
    line-height: 1.5;
    font-weight: 500;
}

.benefit-block {
    border-radius: 20px;
    padding: 40px 30px;
    transition: 0.3s ease;
    text-align: center;
    flex: 1 1 300px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* ODD CARDS (1, 3, 5) - PINK THEME */
.benefit-block:nth-child(odd) {
    background: #E91E63;
    color: white;
}

.benefit-block:nth-child(odd) .icon {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-block:nth-child(odd) .custom-icon {
    stroke: #E91E63;
}

.benefit-block:nth-child(odd) h4 {
    color: white;
}

.benefit-block:nth-child(odd) p,
.benefit-block:nth-child(odd) .mental-image {
    color: rgba(255, 255, 255, 0.95);
}

/* EVEN CARDS (2, 4) - WHITE THEME */
.benefit-block:nth-child(even) {
    background: white;
    color: #444;
    border: 1px solid #F8BBD0;
}

.benefit-block:nth-child(even) .icon {
    background: #FCE4EC;
    /* Light Pink */
}

.benefit-block:nth-child(even) .custom-icon {
    stroke: #E91E63;
}

.benefit-block:nth-child(even) h4 {
    color: #E91E63;
}

.benefit-block:nth-child(even) p,
.benefit-block:nth-child(even) .mental-image {
    color: #555;
}

.benefit-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.benefit-block .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-block .custom-icon {
    width: 38px;
    height: 38px;
    stroke-width: 1.5;
}

@media (max-width: 900px) {
    .summary-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .summary-text-col {
        text-align: left;
        /* Keep list left aligned on mobile too, cleaner */
    }

    .summary-product-image {
        max-width: 80%;
        margin-bottom: 30px;
    }

    .cta-button-white {
        margin: 40px auto 0;
        /* Re-center button on mobile */
    }
}

/* SESSÃO 4 - RESUMO (UPDATED LAYOUT) */
.summary-section {
    padding: 80px 0;
    background: #E91E63;
    /* Deep Pink */
    color: var(--color-white);
}

.summary-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.summary-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.summary-product-image {
    width: 100%;
    max-width: 450px;
    /* Limit size so it doesn't blow up */
    height: auto;
    object-fit: contain;
    /* Preserve original aspect ratio */
    border-radius: 50px;
    /* Very rounded corners */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.summary-text-col {
    flex: 1;
    text-align: left;
}

.summary-section h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 38px;
    /* Adjusted from 42px for side-by-side */
    margin-bottom: 40px;
    color: var(--color-white);
    line-height: 1.2;
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
}

.summary-list li {
    font-size: 18px;
    margin-bottom: 16px;
    /* Reduced spacing slightly */
    padding-left: 0;
    transition: 0.2s ease;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.summary-list li:hover {
    transform: translateX(4px);
}

.cta-button-white {
    display: inline-block;
    /* Left aligned inline block */
    width: fit-content;
    margin: 40px 0 0;
    /* Left aligned margin */
    background: var(--color-white);
    color: var(--color-dusty-pink);
    font-weight: 700;
    font-size: 20px;
    padding: 22px 64px;
    border-radius: 40px;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.cta-button-white:hover {
    background: var(--color-deep-rose);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(255, 255, 255, 0.4);
}

/* SESSÃO 5 - APROVAÇÃO SOCIAL */
.social-proof-section {
    padding: 100px 0;
    background: var(--color-white);
    /* Solid color */
    text-align: center;
}

.social-proof-section h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 42px;
    color: var(--color-deep-rose);
    margin-bottom: 16px;
}

.rating {
    font-weight: 500;
    font-size: 20px;
    color: var(--color-dusty-pink);
    margin-bottom: 60px;
}

.before-after-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scrollbar-width: none;
}

.before-after-carousel::-webkit-scrollbar {
    display: none;
}

/* B&A Carousel Updated Sizing */
.ba-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    min-width: 0;
    /* Reset */
    flex: 0 0 calc(50% - 10px);
    /* 2 items visible (gap 20px -> 10px each side subtracted) */
    width: calc(50% - 10px);
    scroll-snap-align: start;
}

.ba-card:hover {
    box-shadow: none;
    transform: none;
    /* Remove potential hover lift if undesired for plain images */
}

.ba-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    /* Mild rounding as requested */
}

@media (max-width: 768px) {
    .ba-card {
        flex: 0 0 100%;
        width: 100%;
    }
}

/* SESSÃO 6 - GARANTIA */
.guarantee-section {
    padding: 100px 0;
    background: var(--color-deep-rose);
    color: var(--color-white);
    text-align: center;
}

.guarantee-section h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 56px;
    text-transform: none;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.secure-icon {
    font-size: 36px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.guarantee-section p {
    font-weight: 300;
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-section strong {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
}

/* SESSÃO 7 - DEPOIMENTOS */
.testimonials-section {
    padding: 100px 0;
    background: var(--color-white);
    text-align: center;
}

.testimonials-section h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 42px;
    color: var(--color-deep-rose);
    margin-bottom: 64px;
}

.testimonials-grid {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px;
    padding-bottom: 40px;
    scrollbar-width: thin;
    justify-content: start;
}

.testimonial-card {
    background: #E91E63;
    /* Deep Pink as requested */
    color: #FFFFFF;
    /* White text */
    border-radius: 16px;
    padding: 25px;
    /* Reduced padding from 40px */
    min-width: 350px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
    transition: 0.3s;
    text-align: left;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4);
}

.client-image-placeholder {
    width: 100%;
    height: auto;
    background-color: transparent;
    margin-bottom: 20px;
    border-radius: 12px;
    border: none;
    box-shadow: none;
    overflow: visible;
    /* Allow content to flow natural */
}

.client-image-placeholder img {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Force square format */
    object-fit: cover;
    /* Crop to fill without distortion */
    object-position: center;
    /* Center the image */
    display: block;
    border-radius: 12px;
    /* Mild rounding as requested */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Very subtle shadow */
}

.testimonial-card blockquote {
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    /* White text */
    margin: 0 0 16px 0;
    /* Reset margins */
    position: relative;
    line-height: 1.6;
}

.quote {
    color: rgba(255, 255, 255, 0.8);
    /* White transparent */
    font-size: 40px;
    display: block;
    /* Fix indentation bug by making it a block */
    line-height: 1;
    margin-bottom: 8px;
    /* Space below quote */
}

/* Carousel Buttons */
.testimonials-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.carousel-btn {
    background: var(--color-white);
    border: 2px solid var(--color-dusty-pink);
    color: var(--color-dusty-pink);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--color-dusty-pink);
    color: var(--color-white);
}

.carousel-btn.prev {
    margin-right: -24px;
    /* Overlap or close */
}

.carousel-btn.next {
    margin-left: -24px;
}

@media (max-width: 768px) {
    .carousel-btn {
        display: none;
        /* Hide on mobile, use swipe */
    }

    .testimonials-wrapper {
        padding: 0 20px;
    }
}

.client-name {
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
}

/* SESSÃO 8 - GARANTIA DETALHADA */
.detailed-guarantee-section {
    padding: 100px 0;
    background: var(--color-peachy-pink);
    /* Solid color */
    text-align: center;
}

/* Fix layout bug in guarantee section */
.detailed-guarantee-section .pay-later-box {
    display: block;
    margin: 40px auto 0;
    max-width: 600px;
}

/* Before After Carousel Styles */
.ba-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.ba-carousel-wrapper .carousel-btn {
    display: flex !important;
    /* Force show on mobile if requested */
}

.carousel-btn.ba-prev {
    margin-right: -24px;
}

.carousel-btn.ba-next {
    margin-left: -24px;
}

/* SESSÃO 8 - GARANTIA DETALHADA */
.detailed-guarantee-section {
    padding: 100px 0;
    background: #FCE4EC;
    /* Light Pink BG */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.detailed-guarantee-section .container {
    position: relative;
    /* Context for seal */
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.guarantee-content-wrapper {
    max-width: 650px;
    /* Limit width to avoid seal overlap */
    margin: 0 auto;
    /* Center it */
    z-index: 2;
    padding-right: 20px;
}

.rotating-seal {
    position: absolute;
    top: -60px;
    right: 10px;
    /* Moved to corner */
    width: 200px;
    /* Sufficient size */
    height: 200px;
    background: #E91E63;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    border: 4px solid white;
    animation: seal-float 6s ease-in-out infinite;
    z-index: 10;
}

.seal-text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: rotate-seal 20s linear infinite;
    fill: #FFFFFF;
    /* White text for absolute visibility */
    font-weight: 800;
    font-size: 13.5px;
    /* Adjusted to fill circle */
    letter-spacing: 5px;
    /* Increased spacing to close the loop gap */
    text-transform: uppercase;
}

.seal-icon {
    position: relative;
    z-index: 2;
    color: white;
    transform: scale(3.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes rotate-seal {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes seal-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.detailed-guarantee-section h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 38px;
    color: var(--color-deep-rose);
    margin-bottom: 40px;
}

.detailed-guarantee-section p {
    font-size: 18px;
    color: var(--color-text-dark);
    /* max-width: 800px; removed as wrapper handles it */
    margin: 0 auto;
}

.detailed-guarantee-section strong {
    color: var(--color-dusty-pink);
}

.pay-later-box {
    margin-top: 80px;
    border-radius: 12px;
    border: 2px dashed var(--color-blush-pink);
    display: inline-block;
    max-width: 800px;
}

.pay-later-box h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 32px;
    color: var(--color-deep-rose);
}

.pay-later-box p {
    font-weight: 500;
    font-size: 19px;
    color: var(--color-dusty-pink);
    margin-top: 24px;
}

/* SESSÃO 9 - INGREDIENTES */
.ingredients-section {
    padding: 100px 0;
    background: var(--color-dusty-pink);
    text-align: center;
}

.research-text {
    max-width: 900px;
    margin: 0 auto 60px;
}

.research-text h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 36px;
    color: var(--color-white);
    line-height: 1.3;
}

/* New Ingredients Grid Layout */
.ingredients-grid-new {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    /* Increased to allow side-by-side */
    margin: 0 auto;
}

.top-row,
.bottom-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
}

.ingredient-block {
    background: var(--color-peachy-pink);
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    box-shadow: 0 6px 24px rgba(233, 30, 99, 0.1);
    margin-bottom: 0;
    text-align: center;
}

.mid-text-block.full-width {
    background: var(--color-deep-rose);
    /* Pink block as requested */
    color: var(--color-white);
    font-weight: 700;
    font-size: 22px;
    padding: 24px;
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin: 0;
}

.mid-text-block.full-width p {
    margin: 0;
    color: var(--color-white);
}

/* Hide legacy elements just in case */
.arrow-connector {
    display: none;
}

@media (max-width: 768px) {

    .top-row,
    .bottom-row {
        flex-direction: column;
        align-items: center;
    }

    .ingredient-block {
        width: 100%;
        max-width: 100%;
    }
}

.ing-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.ing-icon .custom-icon {
    width: 56px;
    height: 56px;
    stroke: var(--color-deep-rose);
    stroke-width: 1.5;
}

.ingredient-block h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 24px;
    color: var(--color-deep-rose);
    line-height: 1.3;
}

.ingredient-block h5 {
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.ingredient-block p {
    font-size: 16px;
    color: var(--color-text-dark);
}



/* SESSÃO 10 - PACOTES */
.pricing-section {
    padding: 120px 0;
    background: var(--color-white);
    /* Solid color */
    text-align: center;
}

.pricing-section h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 48px;
    color: var(--color-deep-rose);
}

.offer-badge {
    background: rgba(255, 255, 255, 0.6);
    padding: 12px 32px;
    border-radius: 24px;
    color: var(--color-dusty-pink);
    font-weight: 500;
    font-size: 22px;
    display: inline-block;
    margin-bottom: 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--color-white);
    border: 3px solid #FCE4EC;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(252, 228, 236, 0.3);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--color-blush-pink);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(244, 143, 177, 0.35);
}

.pricing-header {
    background: var(--color-dusty-pink);
    padding: 24px;
    color: var(--color-white);
}

.pricing-header span {
    display: block;
    font-size: 16px;
}

.pricing-header strong {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    display: block;
}

.discount-badge {
    background: var(--color-white);
    color: var(--color-dusty-pink);
    font-weight: 700;
    padding: 12px;
    font-size: 20px;
}

.product-image-area {
    padding: 10px 15px;
    /* Reduced specific padding to make image larger */
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    /* Ensure consistent height area */
}

.product-image-area img {
    max-width: 100%;
    width: 100%;
    /* Force width to fill container */
    height: auto;
    object-fit: contain;
    max-height: 250px;
    /* Prevent it from getting absurdly tall if image is vertical, though these are horizontal */
}

.price-area {
    padding: 0 10px 24px;
    /* Reduced padding to fit text */
}

.old-price {
    color: var(--color-dusty-pink);
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 18px;
    display: block;
}

.installment {
    color: var(--color-text-dark);
    font-size: 14px;
    display: flex;
    /* Use flex to keep on same line and align baseline */
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin: 8px 0;
    white-space: nowrap;
    /* Prevent wrapping */
}

.big-price {
    font-family: var(--font-sans);
    /* Changed from serif as requested */
    font-weight: 800;
    /* Extra bold */
    font-size: 42px;
    /* Larger size */
    color: var(--color-deep-rose);
    line-height: 1;
}

.cash-price {
    color: var(--color-gray);
    font-weight: 400;
    font-size: 16px;
}

/* Recommended override for cash price */
.pricing-card.recommended .cash-price {
    color: var(--color-white) !important;
    /* Force white in recommended block */
    font-weight: 600;
    /* Make it pop */
    font-size: 18px;
    /* Slightly larger */
}

.benefits-list {
    list-style: none;
    text-align: left;
    padding: 0 32px 32px;
}

.benefits-list li {
    font-size: 15px;
    color: var(--color-black);
    margin-bottom: 12px;
}

.buy-button {
    background: var(--color-green);
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px;
    margin: 0 24px 24px;
    border-radius: 28px;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    display: block;
    text-align: center;
    animation: btn-pulsing-glow-green 2s infinite;
}

@keyframes btn-pulsing-glow-green {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.buy-button:hover {
    background: var(--color-green-hover);
    transform: translateY(-2px);
}

/* RECOMMENDED CARD */
.pricing-card.recommended {
    background: var(--color-dusty-pink);
    /* Solid color */
    border: 4px solid var(--color-deep-rose);
    /* Ensuring border visibility */
    transform: scale(1.05);
    /* Zoom for prominence */
    color: var(--color-white);
    z-index: 10;
    position: relative;
    /* Context for absolute badge */
    overflow: visible;
    /* CRITICAL: Allows badge to stick out */
    margin-top: -10px;
    /* Slight lift in grid */
}

.pricing-card.recommended:hover {
    transform: scale(1.08) translateY(-8px);
    z-index: 11;
}

.rec-badge {
    position: absolute;
    top: -22px;
    /* Pulls it out of the box */
    left: 50%;
    transform: translateX(-50%);
    /* Centers it */
    background: linear-gradient(90deg, #E91E63 0%, #F48FB1 100%);
    /* Pink gradient requested */
    color: var(--color-white);
    padding: 8px 32px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    border: none;
    /* No border requested */
    z-index: 20;
}

.pricing-card.recommended .pricing-header {
    background: transparent;
}

.pricing-card.recommended .old-price,
.pricing-card.recommended .installment,
.pricing-card.recommended .big-price,
.pricing-card.recommended .benefits-list li {
    color: var(--color-white);
}

.pricing-card.recommended .benefits-list {
    background: transparent;
}

.pricing-card.recommended .product-image-area {
    background: transparent;
}

.pricing-card.recommended .buy-button {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* SESSÃO 11 - FAQ */
.faq-section {
    padding: 100px 0;
    background: #C2185B;
    /* Darker Pink as requested */
    text-align: center;
}

.faq-section h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 42px;
    color: #FFFFFF;
    /* White title */
}

.faq-section p {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 900px;
    margin: 64px auto 0;
    text-align: left;
}

.faq-item {
    margin-bottom: 16px;
    background: #FFF0F5;
    /* Light pink card bg */
    border-radius: 12px;
    overflow: hidden;
    /* Contain the drawer */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: transparent;
    padding: 24px 32px;
    font-weight: 700;
    font-size: 18px;
    color: #C2185B;
    /* Deep Rose text */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: rgba(233, 30, 99, 0.05);
}

.toggle {
    font-size: 28px;
    font-weight: 400;
    color: #E91E63;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    padding: 0 32px;
    /* Collapsed padding */
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    background: transparent;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Arbitrary large height */
    padding: 0 32px 32px;
    /* Expanded padding */
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.3s ease-in 0.1s;
}

/* FOOTER */
.footer {
    background: var(--color-graphite);
    padding: 80px 0;
    color: var(--color-white);
    text-align: center;
}

.attention {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.disclaimer {
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.85);
}

.disclaimer strong {
    color: var(--color-blush-pink);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.medical-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 16px;
}

/* RESPONSIVENESS */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-img-desktop {
        display: none;
    }

    .hero-img-mobile {
        display: block;
    }

    .hero-content {
        padding-left: 20px;
        text-align: center;
        max-width: 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
    }

    .hero-container {
        padding: 0;
        background-image: none;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .grid-benefits {
        grid-template-columns: 1fr;
    }
}