/* =========================================
   CLEAN NUTRA THEME
   Gelatina Slim Redesign - No Pink BG
   ========================================= */

/* 1. VARIABLES & SETUP */
:root {
    /* Cores Primárias */
    --rosa-principal: #E84C88;
    --rosa-claro: #f0f0f0;
    --rosa-pastel: #f8f8f8;
    --rosa-medio: #F472B6;
    --rosa-escuro: #BE185D;

    /* Cores de Apoio */
    --creme: #f9f9f9;
    --dourado: #F5A623;
    --dourado-hover: #E09800;
    --texto-escuro: #1a1a1a;
    --texto-medio: #555555;
    --branco: #FFFFFF;

    /* Gradients */
    --gradient-hero: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
    --gradient-section: linear-gradient(180deg, #f8f8f8 0%, #FFFFFF 50%, #f9f9f9 100%);
    --gradient-cta: linear-gradient(135deg, #F5A623 0%, #F0C040 100%);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'Baloo 2', cursive;
}

body {
    font-family: var(--font-body);
    color: var(--texto-escuro);
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--texto-escuro);
}

/* 2. UTILITIES */
.highlight-pink {
    background: linear-gradient(180deg, transparent 60%, rgba(232, 76, 136, 0.15) 60%);
    padding: 0 5px;
    border-radius: 4px;
}

.text-pink-dark {
    color: var(--rosa-escuro);
}

.text-pink-main {
    color: var(--rosa-principal);
}

/* Buttons */
.cta-button {
    background: var(--gradient-cta);
    color: var(--texto-escuro) !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 50px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    animation: pulse-glow 2s infinite;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
    color: var(--texto-escuro) !important;
}

@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.5);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(245, 166, 35, 0);
    }
}

/* 3. HERO SECTION */
.hero-product {
    position: relative;
    text-align: center;
    padding: 60px 20px 80px;
    background: #f8f8f8;
    overflow: hidden;
}

.hero-product h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--texto-escuro);
}

.hero-product .subtitle {
    font-size: 1.2rem;
    color: var(--texto-medio);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-product .pote-container {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.hero-product img.pote {
    max-width: 100%;
    width: 320px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.hero-shape-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 3;
    animation: float-random 6s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes float-random {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(5deg);
    }
    66% {
        transform: translateY(5px) rotate(-5deg);
    }
}

/* 4. MARQUEE SECTION */
.marquee-section {
    position: relative;
    padding: 30px 0;
    background: #f5f5f5;
    overflow: hidden;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.marquee-track {
    display: flex;
    animation: scroll-left 25s linear infinite;
    gap: 20px;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.marquee-badge.pink {
    background: var(--rosa-principal);
    color: white;
    border: 2px solid var(--rosa-escuro);
}

.marquee-badge.light {
    background: white;
    color: var(--texto-escuro);
    border: 2px solid #ddd;
}

.marquee-badge i {
    font-size: 1.2rem;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 5. PAIN POINTS */
.para-mim-section {
    padding: 80px 20px;
    background: #ffffff;
}

.para-mim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.para-mim-card {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.para-mim-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--rosa-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
}

/* 6. VISUAL TESTIMONIALS */
.visual-testimonials-section {
    padding: 80px 20px;
    background: #f8f8f8;
    text-align: center;
}

.testimonials-carousel {
    display: flex;
    gap: 0px;
    overflow-x: auto;
    padding: 40px 20px;
    scroll-snap-type: x mandatory;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-photo-wrapper {
    position: relative;
    margin: 0 15px;
    scroll-snap-align: center;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--rosa-principal);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.1;
}

/* 7. BODY BENEFITS */
.body-benefits-section {
    padding: 80px 20px;
    background: #ffffff;
}

.benefit-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: box-shadow 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.benefit-card .content {
    padding: 24px;
}

.benefit-card h3 {
    color: var(--texto-escuro);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* 8. PRODUCT SHOWCASE */
.product-showcase {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 100%);
    text-align: center;
    overflow: hidden;
}

.paper-cut-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    clip-path: polygon(50% 0%, 61% 11%, 75% 5%, 79% 20%, 95% 25%, 88% 39%, 100% 50%, 88% 61%, 95% 75%, 79% 80%, 75% 95%, 61% 89%, 50% 100%, 39% 89%, 25% 95%, 21% 80%, 5% 75%, 12% 61%, 0% 50%, 12% 39%, 5% 25%, 21% 20%, 25% 5%, 39% 11%);
    background: linear-gradient(135deg, #555, #333);
    z-index: 1;
    opacity: 0.15;
}

.product-showcase .content-wrapper {
    position: relative;
    z-index: 2;
}

.product-showcase h2.bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 8rem;
    color: #fff;
    opacity: 0.1;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

/* Wave Dividers */
.wave-divider {
    position: relative;
    height: 60px;
    background: transparent;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-product h1 {
        font-size: 1.8rem;
    }

    .product-showcase h2.bg-text {
        font-size: 4rem;
    }

    .paper-cut-shape {
        width: 350px;
        height: 350px;
    }

    .testimonials-carousel {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
}

/* Testimonial Photo */
.testimonial-photo {
    width: 220px;
    height: 220px;
    border-radius: 50% !important;
    overflow: hidden;
    border: 6px solid var(--rosa-principal);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    background-color: #eee;
    margin: 0 auto;
}

/* 9. PRODUCT BENEFITS GRID */
.product-benefits-grid-section {
    padding: 80px 20px;
    background: #ffffff;
}

.benefits-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item-card {
    text-align: center;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 20px;
    transition: transform 0.3s;
    border: 1px solid #e8e8e8;
}

.benefit-item-card:hover {
    transform: translateY(-5px);
}

.benefit-badge-icon {
    width: 70px;
    height: 70px;
    background: var(--rosa-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    border: 4px solid #eee;
}

/* 10. COMPARISON */
.comparison-section {
    padding: 80px 20px;
    background: #ffffff;
}

.comparison-container {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-half {
    flex: 1;
    padding: 60px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.comparison-half.sem {
    background: #f0f0f0;
    color: #666;
}

.comparison-half.com {
    background: var(--rosa-principal);
    color: white;
}

.comparison-half h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.comparison-half.com h3 {
    color: white;
}

.comparison-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
}

.comparison-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--texto-escuro);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* 11. INGREDIENTS */
.ingredients-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.ingredient-card {
    background: white;
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.ingredient-inner {
    border: 1px dashed #ccc;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    text-align: center;
}

.ingredient-title {
    color: var(--texto-escuro);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

/* Responsive Comparison */
@media (max-width: 768px) {
    .comparison-container {
        flex-direction: column;
    }

    .comparison-vs-badge {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: -30px auto;
    }
}

/* 14. TESTIMONIALS & DOCTOR */
#testimonials .card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

#testimonials .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.doctor-section-container {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5f8a 100%) !important;
    border: none !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

/* 15. GUARANTEE & FAQ */
#guarantee {
    background: #ffffff;
}

.accordion-button:not(.collapsed) {
    color: var(--texto-escuro) !important;
    background-color: #f5f5f5 !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125) !important;
}

.accordion-button:focus {
    border-color: #ccc !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1) !important;
}

.accordion-button::after {
    filter: none;
}

/* 17. ANIMATIONS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 16. FOOTER */
footer a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s;
}

footer a:hover {
    color: white !important;
    text-decoration: underline !important;
}

/* 12. PURCHASE SECTION */
.purchase-section {
    padding: 80px 20px;
    background: #ffffff;
}

.purchase-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.purchase-left {
    flex: 1;
    min-width: 300px;
}

.purchase-gallery {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fff;
    padding: 20px;
    text-align: center;
}

.purchase-gallery img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.purchase-gallery img:hover {
    transform: scale(1.02);
}

.purchase-right {
    flex: 1;
    min-width: 300px;
}

.purchase-options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    position: relative;
}

.pricing-option:hover {
    border-color: #ccc;
    background: #f8f8f8;
}

.pricing-option.selected {
    border-color: var(--rosa-principal);
    background: #f8f8f8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pricing-option.selected::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--rosa-principal);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.option-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--texto-escuro);
}

.option-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.option-price {
    text-align: right;
}

.option-price .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    display: block;
}

.option-price .current-price {
    color: var(--texto-escuro);
    font-weight: 700;
    font-size: 1.3rem;
}

.best-value-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--dourado);
    color: var(--texto-escuro);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.purchase-actions {
    margin-top: 30px;
    text-align: center;
}

.btn-purchase-main {
    background: var(--gradient-cta);
    color: var(--texto-escuro);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 20px 40px;
    border-radius: 50px;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
    text-decoration: none;
    display: block;
}

.btn-purchase-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 166, 35, 0.5);
    color: var(--texto-escuro);
}

/* 13. BONUSES */
.bonus-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.bonus-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid #e0e0e0;
    transition: transform 0.3s;
    height: 100%;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-img {
    min-height: 220px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
}

.bonus-img img {
    max-width: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 8px;
}

.bonus-content {
    padding: 25px;
    position: relative;
}

.bonus-tag {
    position: absolute;
    top: -15px;
    left: 25px;
    background: var(--rosa-principal);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

/* ============================================ */
/* QUIZ - COMPLETE VISUAL OVERHAUL             */
/* ============================================ */

/* Quiz Card Container */
.quiz-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%) !important;
    border-radius: 24px !important;
    border: 2px solid #e8e8f0 !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1) !important;
    padding: 40px 35px !important;
    position: relative;
    overflow: hidden;
}

.quiz-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--rosa-principal), #F472B6, var(--dourado));
}

/* Quiz Header */
.quiz-header h2 {
    color: var(--texto-escuro) !important;
    text-shadow: none !important;
    font-family: var(--font-heading) !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
}

.quiz-header h2 strong {
    color: var(--rosa-principal) !important;
}

.quiz-description {
    color: var(--texto-medio) !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    opacity: 1 !important;
    margin-bottom: 25px !important;
}

/* Question Title */
.question h4 {
    color: var(--texto-escuro) !important;
    text-shadow: none !important;
    font-family: var(--font-heading) !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    text-align: center !important;
}

/* Option Buttons */
.btn.option,
.option {
    background: #ffffff !important;
    border: 2px solid #e0e4ee !important;
    color: var(--texto-escuro) !important;
    border-radius: 14px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    padding: 14px 20px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.btn.option:hover,
.option:hover {
    background: linear-gradient(135deg, rgba(232, 76, 136, 0.08), rgba(244, 114, 182, 0.08)) !important;
    border-color: var(--rosa-principal) !important;
    color: var(--texto-escuro) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(232, 76, 136, 0.15) !important;
}

.btn.option:active,
.option:active {
    transform: translateY(0) !important;
    background: rgba(232, 76, 136, 0.12) !important;
    border-color: var(--rosa-principal) !important;
}

/* Checkbox Question (Body Parts) */
.form-check-container {
    max-width: 550px !important;
}

.form-check {
    background: #ffffff !important;
    border: 2px solid #e0e4ee !important;
    border-radius: 14px !important;
    padding: 14px 18px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.form-check:hover {
    border-color: var(--rosa-principal) !important;
    background: rgba(232, 76, 136, 0.05) !important;
    box-shadow: 0 4px 12px rgba(232, 76, 136, 0.1) !important;
}

.form-check label {
    color: var(--texto-escuro) !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    font-size: 0.95rem !important;
}

.form-check input[type="checkbox"] {
    accent-color: var(--rosa-principal) !important;
}

/* Navigation Buttons */
.btn-back {
    background: #f0f0f5 !important;
    border: 2px solid #d0d0dd !important;
    color: var(--texto-medio) !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
}

.btn-back:hover {
    background: #e5e5ee !important;
    border-color: #bbb !important;
    color: var(--texto-escuro) !important;
}

.btn-calculate {
    background: linear-gradient(135deg, var(--rosa-principal), #F472B6) !important;
    border: none !important;
    color: white !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 6px 20px rgba(232, 76, 136, 0.35) !important;
    transition: all 0.3s ease !important;
    margin-left: 12px !important;
}

.btn-calculate:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(232, 76, 136, 0.45) !important;
    color: white !important;
}

/* Progress Section */
.progress-section h4 {
    color: var(--texto-escuro) !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

.progress-section p {
    color: var(--texto-medio) !important;
}

.progress-section p span {
    color: var(--rosa-principal) !important;
    font-weight: 700 !important;
}

.progress-bar-container {
    background: #e8e8f0 !important;
    border-radius: 12px !important;
}

.progress-fill {
    background: linear-gradient(90deg, var(--rosa-principal), #F472B6) !important;
    border-radius: 12px !important;
}

.step-txt {
    color: var(--texto-medio) !important;
    font-weight: 600 !important;
}

.step-txt.active {
    color: var(--rosa-principal) !important;
}

.progress-bar {
    background-color: var(--rosa-principal) !important;
}

/* Result Section */
.result-section {
    text-align: left !important;
}

.result-text h2 {
    color: var(--rosa-principal) !important;
    font-family: var(--font-heading) !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}

.result-text p {
    color: var(--texto-escuro) !important;
    line-height: 1.7 !important;
    font-size: 1rem !important;
}

.unlock-btn {
    background: linear-gradient(135deg, var(--dourado), #F0C040) !important;
    border: none !important;
    color: var(--texto-escuro) !important;
    padding: 16px 30px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.unlock-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.5) !important;
    color: var(--texto-escuro) !important;
}

.result-image {
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}

/* Responsive Purchase */
@media (max-width: 768px) {
    .purchase-wrapper {
        flex-direction: column;
    }
}

/* ============================================ */
/* GUARANTEE + FAQ COMBINED LAYOUT              */
/* ============================================ */
.guarantee-faq-section {
    padding: 80px 20px;
    background: #ffffff;
}

.guarantee-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

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

.guarantee-badge {
    width: 180px;
    height: 180px;
    background: var(--rosa-principal);
    clip-path: polygon(50% 0%, 61% 11%, 75% 5%, 79% 20%, 95% 25%, 88% 39%, 100% 50%, 88% 61%, 95% 75%, 79% 80%, 75% 95%, 61% 89%, 50% 100%, 39% 89%, 25% 95%, 21% 80%, 5% 75%, 12% 61%, 0% 50%, 12% 39%, 5% 25%, 21% 20%, 25% 5%, 39% 11%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 56px;
    font-weight: 900;
    font-family: var(--font-heading);
    margin: 0 auto 20px;
}

.guarantee-side h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--texto-escuro);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.guarantee-side p {
    color: var(--texto-medio);
    line-height: 1.7;
}

.guarantee-badges-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.guarantee-badges-row img {
    max-height: 50px;
}

.faq-side .faq-item {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.faq-side .faq-item:hover {
    background: #eee;
}

.faq-side .faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--texto-escuro);
    font-size: 0.95rem;
}

.faq-side .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--texto-medio);
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-side .faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 12px;
}

.faq-side .faq-item .faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: var(--rosa-principal);
}

.faq-side .faq-item.active .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .guarantee-faq-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-badge {
        width: 140px;
        height: 140px;
        font-size: 42px;
    }
}

/* ============================================ */
/* SHIMMER ANIMATION                            */
/* ============================================ */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.shimmer-badge {
    background: linear-gradient(90deg, var(--rosa-principal) 25%, #FFB6D3 50%, var(--rosa-principal) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================ */
/* DOCTOR SECTION                               */
/* ============================================ */
.doctor-section-container {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5f8a 100%) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* ============================================ */
/* REFERENCES SECTION                           */
/* ============================================ */
#references h2 {
    color: var(--texto-escuro);
}

#references ol li {
    color: var(--texto-medio);
    margin-bottom: 10px;
}

#references ol li span {
    color: var(--rosa-principal);
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
footer,
.footer-custom {
    background-color: #5F7496 !important;
    padding: 24px 20px !important;
}

footer a,
.footer-custom a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.2s;
}

footer a:hover,
.footer-custom a:hover {
    color: white !important;
}

/* ============================================ */
/* TESTIMONIALS FIX                             */
/* ============================================ */
#testimonials h2 {
    color: var(--texto-escuro) !important;
}

#testimonials .card {
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#testimonials .verified span:last-child {
    color: var(--rosa-principal);
}

/* ============================================ */
/* VSL VIDEO CONTAINER                          */
/* ============================================ */
.cerberus-video-container-wrapper {
    height: auto !important;
    max-height: 75vh;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-article-container {
    overflow: visible;
    padding-bottom: 5px;
}

.news-article-container .col-lg-10 {
    overflow: visible;
}

@media (min-width: 992px) {
    .cerberus-video-container {
        width: 30% !important;
        max-width: 320px !important;
    }

    .cerberus-video-container-wrapper {
        max-height: 70vh;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .cerberus-video-container {
        width: 50% !important;
    }
}

@media (max-width: 767px) {
    .cerberus-video-container {
        width: 80% !important;
    }

    .cerberus-video-container-wrapper {
        max-height: 80vh;
    }
}

/* ============================================ */
/* BRAND SECTION & FB COMMENTS                  */
/* ============================================ */
.brand-section {
    background: #fff !important;
    padding-top: 15px !important;
}

.brand-section .after-quiz {
    background: #ffffff;
}

#fb-comments {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

/* ============================================ */
/* FREE SHIPPING BANNER                         */
/* ============================================ */
.free-shipping-banner {
    padding: 30px 20px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.shipping-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.shipping-banner-inner h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: white;
    margin: 0;
    letter-spacing: 2px;
}

.shipping-banner-inner h3 i {
    margin-right: 8px;
}

.shipping-banner-inner p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
}

.shipping-icon {
    font-size: 2rem;
    opacity: 0.8;
}

/* ============================================ */
/* PRODUCT CARDS                                */
/* ============================================ */
.product-cards-section {
    padding: 60px 20px;
    background: #f8f8f8;
}

.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.product-card {
    background: white;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    padding: 30px 20px 24px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.product-card.card-best {
    border-color: var(--rosa-principal);
    box-shadow: 0 8px 30px rgba(232, 76, 136, 0.2);
    transform: scale(1.05);
}

.product-card.card-best:hover {
    transform: scale(1.05) translateY(-5px);
}

.product-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: var(--font-display);
}

.badge-basic {
    background: #e8e8e8;
    color: #555;
}

.badge-good {
    background: #f0f0f0;
    color: var(--texto-escuro);
}

.badge-best {
    background: linear-gradient(135deg, var(--rosa-principal), #F472B6);
    color: white;
}

.product-card-qty {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--texto-escuro);
    margin: 14px 0 0;
}

.product-card-qty strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
}

.product-card-img {
    margin: 15px 0;
}

.product-card-img img {
    max-height: 180px;
    width: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

.product-card-price {
    margin: 10px 0 5px;
}

.price-per-pot {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--texto-escuro);
    font-family: var(--font-display);
    line-height: 1;
}

.price-per-label {
    font-size: 0.95rem;
    color: var(--texto-medio);
    display: inline-block;
    margin-left: 4px;
}

.product-card-savings {
    color: var(--rosa-principal);
    font-weight: 800;
    font-size: 0.95rem;
    margin: 8px 0;
    letter-spacing: 0.5px;
}

.product-card-doctor-rec {
    background: #f5f5f5;
    color: var(--texto-escuro);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    margin: 4px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.product-card-guarantee {
    font-size: 0.85rem;
    color: var(--texto-medio);
    margin: 8px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-card-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white !important;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    width: 90%;
    margin: 12px 0;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    font-family: var(--font-display);
}

.product-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
    color: white !important;
}

.cta-sub {
    font-size: 0.78rem;
    opacity: 0.9;
    font-weight: 400;
    font-family: var(--font-body);
}

.product-card-payment img {
    max-height: 26px;
    opacity: 0.6;
    margin: 8px 0;
}

.product-card-total {
    font-size: 0.9rem;
    margin-top: 4px;
    color: var(--texto-medio);
}

.total-old {
    text-decoration: line-through;
    color: #999;
    margin-right: 4px;
}

.total-new {
    font-weight: 700;
    color: var(--texto-escuro);
}

.free-shipping-tag {
    color: #27ae60;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ============================================ */
/* GUARANTEE STANDALONE                         */
/* ============================================ */
.guarantee-standalone {
    padding: 60px 20px;
    background: #f8f8f8;
}

.guarantee-standalone h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--texto-escuro);
    margin: 16px 0 10px;
    font-size: 1.5rem;
}

.guarantee-standalone p {
    color: var(--texto-medio);
    max-width: 500px;
    margin: 0 auto 16px;
}

.guarantee-standalone .guarantee-badges-row {
    margin-top: 16px;
}

/* ============================================ */
/* RESPONSIVE: Product Cards & Free Shipping    */
/* ============================================ */
@media (max-width: 992px) {
    .product-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .product-card.card-best {
        transform: none;
        order: -1;
    }

    .product-card.card-best:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .shipping-banner-inner h3 {
        font-size: 1.4rem;
    }

    .shipping-icon {
        display: none;
    }

    .product-card-cta {
        font-size: 1rem;
        padding: 12px 24px;
    }

    .price-per-pot {
        font-size: 2.5rem;
    }

    .guarantee-standalone h3 {
        font-size: 1.3rem;
    }
}
