:root {
    /* Brand Colors */
    --primary-color: #0F5132;
    /* Deep Medical Green */
    --secondary-color: #198754;
    /* Vibrante Green */
    --accent-color: #D32F2F;
    /* Urgency Red */
    --gold: #FFC107;
    /* Premium Gold */
    --dark: #212529;
    --light: #F8F9FA;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #E9F7EF 0%, #FFFFFF 100%);
    --gradient-btn: linear-gradient(45deg, #198754, #0F5132);
    --gradient-glow: linear-gradient(45deg, #ff357a, #fff172);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    background-color: #fdfdfd;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons & Utilities */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    font-family: var(--font-heading);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(25, 135, 84, 0.3);
}

.btn-buy {
    background: #27ae60;
    color: white;
    width: 100%;
    font-size: 1.2rem;
    padding: 18px;
}

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

.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5em;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Header / Promo Bar */
.promo-bar {
    background: var(--accent-color);
    color: white;
    padding: 12px 0;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    /* Ensure centering vertically if needed, though block is fine */
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-text {
    display: inline-block;
    animation: ticker 20s linear infinite;
    padding-left: 100%;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Hero Section */
.hero {
    padding: 60px 0 100px;
    background: var(--gradient-hero);
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1.2;
}

.badge-top {
    display: inline-block;
    background: #e8f5e9;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid var(--secondary-color);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(25, 135, 84, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #444;
}

.hero-benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item i {
    color: var(--secondary-color);
}

.trust-row {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.hero-image {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: 20px;
}

.floating-img {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    max-height: 500px;
    margin: 0 auto;
}

.discount-circle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.4);
    transform: rotate(15deg);
    animation: bounce 3s infinite;
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Glass Card Global */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

/* Video Section */
.video-section {
    padding: 40px 0;
    text-align: center;
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

.video-wrapper {
    max-width: 1200px;
    /* Increased Size */
    width: 95%;
    /* Responsive Fullish Width */
    margin: 0 auto;
    padding: 10px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.responsive-video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    background: black;
}

.responsive-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Benefits Grid */
.benefits {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.benefit-card {
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

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

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: #e8f5e9;
    color: var(--primary-color);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.5s;
}

.benefit-card:hover .icon-box {
    transform: rotateY(180deg);
}

/* Ingredients */
.ingredients {
    padding: 60px 0;
    text-align: center;
    background: white;
}

.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto 20px;
}

.ingredient-pill {
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-weight: 600;
    font-size: 0.95rem;
    color: #555;
    transition: all 0.3s;
}

.ingredient-pill:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Offers Section */
.offers {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9f7ef 100%);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    align-items: center;
}

.offer-card {
    background: white;
    padding: 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
    z-index: 1;
}

.offer-card:hover {
    transform: scale(1.03);
    z-index: 5;
}

/* Popular Card Style */
.offer-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 20px 40px rgba(25, 135, 84, 0.15);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 5px 20px;
    font-weight: 700;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Best Seller Card Style */
.offer-card.best-seller {
    border: 2px solid var(--gold);
}

.best-seller-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 5px 20px;
    font-weight: 700;
    border-radius: 20px;
    font-size: 0.8rem;
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.card-img img {
    margin: 0 auto 20px;
    max-height: 180px;
}

.card-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-from {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.price-to {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.installment {
    font-size: 0.9rem;
    color: #555;
}

.savings {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Warranty */
.warranty-section {
    padding: 60px 0;
    background: #212529;
    color: white;
    margin-bottom: -1px;
}

.warranty-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.warranty-seal img {
    width: 150px;
    animation: spin-slow 20s linear infinite;
}

.warranty-content h2 {
    font-size: 2.5rem;
    color: var(--gold);
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: #f8f9fa;
    border: none;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9f7ef;
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 20px;
}

.faq-answer p {
    padding: 15px 0;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Sticky Footer (Mobile) */
.sticky-footer-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
}

.sticky-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    animation: pulse-red 2s infinite;
}

/* Footer */
footer {
    background: #111;
    color: #777;
    padding: 50px 0 100px;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

/* Animation Keyframes */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(25, 135, 84, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(211, 47, 47, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

@keyframes spin-slow {
    100% {
        transform: rotate(360deg);
    }
}

/* Scroll Reveal Class */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* Responsive */
@media (max-width: 768px) {
    .promo-bar .scrolling-text {
        animation-duration: 10s;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .highlight::after {
        bottom: 2px;
        height: 8px;
    }

    .hero-benefits-list {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .warranty-box {
        flex-direction: column;
        text-align: center;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-card.popular {
        transform: scale(1);
        margin: 20px 0;
    }

    .sticky-footer-mobile {
        display: block;
    }
}

/* 
   --- HERO IMAGE VISUAL EFFECTS ---
   Added manually to ensure strict inclusion
*/
.hero-effect-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Main Image */
.hero-main {
    position: relative;
    z-index: 10;
    transition: all 0.1s ease-out;
    /* Smooth JS control */
    transform-origin: center center;
    opacity: 0;
    animation: fade-in-grow 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Blur Layers behind */
.hero-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    opacity: 0;
    filter: blur(25px);
    transition: all 0.5s ease;
    width: 90%;
}

.blur-1 {
    animation: pulse-blur 4s infinite alternate;
}

.blur-2 {
    filter: blur(45px);
    opacity: 0.3;
    width: 110%;
    animation: pulse-blur 6s infinite alternate-reverse;
}

/* Entrance Animation */
@keyframes fade-in-grow {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-blur {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.7;
    }
}

/* --- FIXES FOR USER REQUEST --- */

/* 1. Hero Badge Fix */
.discount-circle {
    top: 50%;
    right: 50%;
    transform: translate(150%, -50%) rotate(15deg);
    /* Position relative to center but offset right */
    animation: none !important;
    /* Remove bounce */
    z-index: 20;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* 2. Offers Grid Fix (2 Rows of 4) */
@media (min-width: 1100px) {
    .offers-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px;
    }
}

/* 3. Benefits Section Visibility Fix */
.benefits {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: #f8f9fa;
    /* Ensure contrast */
    padding: 80px 0;
}

.benefits .section-title {
    color: var(--primary-color);
}


/* --- FAILSAFE FOR SCROLL REVEAL --- */
.scroll-reveal {
    opacity: 1 !important;
    /* Force visibility by default to prevent 'missing products' issue */
    transform: none !important;
}


/* --- FIX FOR PROMO BAR Z-INDEX --- */
.promo-bar {
    position: relative;
    z-index: 100 !important;
    /* Ensure it stays above hero blurs */
}


/* --- DETAILED INGREDIENTS GRID --- */
.ingredients-grid-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.ing-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e9f7ef;
    /* Subtle green border */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(25, 135, 84, 0.1);
    border-color: var(--secondary-color);
}

.ing-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #e8f5e9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.ing-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.ing-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 60px;
    /* Aligns internal content somewhat */
}

.ing-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin-top: auto;
    /* Pushes list to bottom */
    font-size: 0.9rem;
    color: #444;
}

.ing-card ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.ing-card ul li:last-child {
    border-bottom: none;
}

.ing-card ul li::before {
    content: '?';
    color: var(--secondary-color);
    margin-right: 8px;
    font-weight: bold;
}


/* --- INGREDIENT IMAGE UNIFICATION --- */
.ing-img {
    background: white;
    /* Force white background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    /* Padding inside the circle */
}

.ing-img img {
    /* Mix blend mode to 'knock out' white backgrounds if present in the image itself, 
       making them blend with the container's white background */
    mix-blend-mode: multiply;
    object-fit: contain;
}


/* --- VERTICAL VIDEO FIX --- */
.vertical-video-wrapper {
    max-width: 360px;
    /* Mobile width */
    margin: 0 auto;
    background: black;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 8px solid white;
    /* Frame effect */
}

.vertical-video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}


/* --- INGREDIENT IMAGE & ICON FIX --- */
.ing-img {
    padding: 0 !important;
    /* Remove padding to maximize image */
}

.ing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    /* Force fill */
    mix-blend-mode: normal !important;
    /* Reset blend mode if using transparent pngs, or keep multiply if white bg. User asked to fill circle, assuming images are full. Let's try cover. */
}

.ing-card ul li::before {
    content: '\f00c';
    /* Font Awesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--secondary-color);
}


/* --- SCALE FIX FOR INGREDIENTS --- */
.ing-img img {
    transform: scale(1.5);
    /* Scale up to fill circle completely */
}


/* --- GUARANTEE SECTION --- */
.guarantee-section {
    background: linear-gradient(135deg, #0f5132 0%, #198754 100%);
    color: white;
    padding: 60px 20px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(15, 81, 50, 0.3);
    position: relative;
    overflow: hidden;
}

.guarantee-content {
    flex: 1;
    padding: 20px;
}

.guarantee-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.guarantee-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.guarantee-img {
    flex: 0 0 400px;
    position: relative;
}

.guarantee-img img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.guarantee-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
}

/* --- RESULTS SECTION --- */
.results-section {
    padding: 60px 0;
    text-align: center;
}

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

.result-card {
    background: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.result-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

@media (max-width: 900px) {
    .guarantee-section {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-img {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
    }
}


/* --- REAL RESULTS SECTION --- */
.real-results {
    padding: 60px 0;
    background: #fdfdfd;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.result-card {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}

.result-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.result-card:hover img {
    transform: scale(1.05);
}

/* --- GUARANTEE SECTION --- */
.guarantee-section {
    padding: 60px 0;
}

.guarantee-card {
    background: var(--primary-color);
    /* Green background */
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: white;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(25, 135, 84, 0.3);
    position: relative;
    overflow: hidden;
}

.guarantee-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-product {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.guarantee-seal {
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    border: 4px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: rotate(-10deg);
}

.guarantee-seal span {
    font-size: 3rem;
    line-height: 1;
}

.guarantee-seal small {
    font-size: 1rem;
    text-transform: uppercase;
}

.guarantee-content {
    flex: 1.5;
    min-width: 300px;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
}

.guarantee-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.95;
    color: #e8f5e9;
}

.guarantee-content .btn-buy {
    background: linear-gradient(180deg, #28a745, #1e7e34);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #4ade80;
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    margin-top: 20px;
}

.guarantee-content .btn-buy:hover {
    transform: scale(1.05);
    background: linear-gradient(180deg, #34ce57, #28a745);
}

.guarantee-footer {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .guarantee-seal {
        right: 50%;
        transform: translate(50%, 20%) rotate(-10deg);
    }

    .guarantee-content h2 {
        font-size: 2rem;
    }
}


/* --- VIDEO LAYOUT RESTRUCTURE --- */
.video-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 40px;
    text-align: left !important;
    /* Reset center alignment */
}

.vertical-video-wrapper {
    flex: 0 0 auto;
    /* Don't grow */
    width: 100%;
    max-width: 320px;
    /* Slightly smaller for balance */
    margin: 0 !important;
    /* Remove auto margins */
}

.video-description {
    flex: 1;
    /* Take remaining space */
    min-width: 300px;
    margin: 0 !important;
    /* Reset margins */
    text-align: left;
}

.video-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    padding: 15px 25px;
    background: #f8fcf9;
    border-left: 5px solid var(--secondary-color);
    border-radius: 0 10px 10px 0;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.video-description p:last-child {
    margin-bottom: 0;
    font-weight: 700;
    background: #e9f7ef;
    color: var(--primary-color);
}

/* --- FIX FOR RESULTS GRID CROP --- */
.result-card img {
    object-fit: contain !important;
    /* Show full image */
    background: #f0f0f0;
    /* Light bg for empty spaces */
}

@media (max-width: 900px) {
    .video-wrapper {
        flex-direction: column;
        text-align: center !important;
    }

    .vertical-video-wrapper {
        margin: 0 auto !important;
    }

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

    .video-description p {
        text-align: left;
        /* Keep text readable */
    }
}


/* --- SPECIALIST CONTACT SECTION --- */
.specialist-contact {
    padding: 60px 0;
}

.specialist-banner {
    background: linear-gradient(135deg, #1e7e34, #28a745);
    /* Green gradient */
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(40, 167, 69, 0.3);
}

.specialist-content {
    flex: 1.5;
    color: white;
    z-index: 2;
    padding-right: 20px;
}

.specialist-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.specialist-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.95;
    line-height: 1.6;
}

.specialist-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1;
}

.specialist-img img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float-icon {
    position: absolute;
    bottom: 30px;
    right: 35%;
    font-size: 4rem;
    color: #25D366;
    background: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    font-weight: 800;
    padding: 15px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    margin-top: 20px;
    display: inline-block;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.05);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials {
    padding: 60px 0;
    background: #fdfdfd;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    border-left: 5px solid var(--primary-color);
}

.user-profile {
    flex: 0 0 100px;
    margin-right: 25px;
}

.user-profile img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.user-review {
    flex: 1;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.user-info h4 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0;
    display: inline-block;
}

.user-info span {
    font-size: 0.9rem;
    color: #777;
    margin-left: 5px;
}

.verified-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 8px;
    margin-right: 15px;
    font-weight: 600;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .specialist-banner {
        flex-direction: column;
        text-align: center;
    }

    .specialist-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .whatsapp-float-icon {
        right: 20px;
        bottom: 20px;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .user-profile {
        margin: 0 auto 20px;
    }
}


/* --- FOOTER STYLING --- */
.site-footer {
    background-color: var(--primary-color);
    /* Dark Green */
    color: white;
    padding: 60px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h5 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-logo {
    max-width: 140px;
    filter: brightness(0) invert(1);
    /* Make logo white */
}

.copyright-text {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
}

.btn-tracking {
    background: #76b041;
    /* Light Green Button */
    color: white;
    font-weight: 800;
    padding: 12px 25px;
    border-radius: 50px;
    margin-top: 15px;
    display: inline-block;
    border: 2px solid white;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 220px;
}

.btn-tracking:hover {
    background: #5d8f31;
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-style: italic;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Ensure images in footer don't overflow */
.footer-col img {
    max-width: 100%;
    height: auto;
}


/* --- FOOTER STYLING --- */
.site-footer {
    background-color: var(--primary-color);
    /* Dark Green */
    color: white;
    padding: 60px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h5 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-logo {
    max-width: 140px;
    filter: brightness(0) invert(1);
    /* Make logo white */
}

.copyright-text {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
}

.btn-tracking {
    background: #76b041;
    /* Light Green Button */
    color: white;
    font-weight: 800;
    padding: 12px 25px;
    border-radius: 50px;
    margin-top: 15px;
    display: inline-block;
    border: 2px solid white;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 220px;
}

.btn-tracking:hover {
    background: #5d8f31;
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-style: italic;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Ensure images in footer don't overflow */
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-col img {
    max-width: 100%;
    height: auto;
}


/* --- HERO IMAGE REFINEMENTS --- */
.hero-effect-container {
    /* Move more to the right */
    transform-origin: center right;
    margin-right: -40px;
    /* Pull to right */
}

.hero-main {
    /* Make 100% width default, then scale */
    width: 100%;
    /* Scale and Widen (gordinhos) */
    transform: scale(1.15) scaleX(1.1);
    transition: transform 0.5s ease;
}

/* --- EMAIL POPUP MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    background: linear-gradient(145deg, #ffffff, #f0f7f1);
    border: 3px solid var(--primary-color);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #000;
}

.modal-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

.highlight-green {
    color: var(--primary-color);
    font-weight: 900;
}

.popup-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.popup-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.btn-popup-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #28a745, #1e7e34);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-popup-submit:hover {
    transform: scale(1.02);
}

.small-print {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #888;
}

/* Ensure mobile responsiveness */
@media (max-width: 768px) {
    .hero-effect-container {
        margin-right: 0;
        transform-origin: center center;
    }

    .hero-main {
        /* Keep scale logic on mobile too if desired, or adjust */
        transform: scale(1.1) scaleX(1.1);
    }
}


/* --- NEW OFFERS GRID STYLES (4 Slots) --- */
.offers-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    /* Force 4 columns on large screens */
    gap: 20px;
}

/* Specific pricing highlight styles */
.price-container {
    text-align: center;
    margin: 15px 0;
}

.price-small {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.price-highlight {
    font-size: 2.2rem;
    font-weight: 800;
    color: #28a745;
    /* Green */
    line-height: 1.1;
    margin: 5px 0;
}

.price-highlight small {
    font-size: 1rem;
    font-weight: 600;
    color: #28a745;
}

.price-installments {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.ebook-label {
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Dancing Script', cursive;
    /* Or italic serif if font not available */
    font-style: italic;
    margin-bottom: 10px;
    display: inline-block;
}

@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .offers-grid {
        grid-template-columns: 1fr !important;
    }
}


/* --- VIDEO LAYOUT RESTRUCTURE (Restored) --- */
.video-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 20px;
}

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

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

.video-col-right h2 {
    text-align: left;
    margin-bottom: 25px;
}

.video-text-content {
    text-align: left;
}

.text-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border-left: 5px solid var(--secondary-color);
}

.text-card p {
    margin-bottom: 0;
    color: #555;
    font-size: 1.05rem;
}

.pulsate {
    animation: pulsate 2s infinite;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@media (max-width: 768px) {
    .video-layout {
        flex-direction: column;
        text-align: center;
    }

    .video-col-right h2,
    .video-text-content {
        text-align: center;
    }
}

/* --- SHIPPING LABELS --- */
.shipping-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
}

.ship-free {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.ship-paid {
    background: #f5f5f5;
    color: #616161;
    border: 1px solid #e0e0e0;
}

.shipping-tag i {
    font-size: 1rem;
}

/* --- OFFERS HEADER FIX --- */
.offers-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}


/* --- BEST SELLER BADGE FIX --- */
.offer-card {
    overflow: visible !important;
    position: relative;
}

.best-seller-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    z-index: 10;
    text-align: center;
    background: #FFD700;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}


/* --- INGREDIENTS CAROUSEL --- */
.ingredients-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 50px;
    /* Space for arrows */
}

.ingredients-viewport {
    overflow: hidden;
    padding: 10px 0;
    /* Space for shadow */
}

.ingredients-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
    /* Gap handled by padding in cards */
}

.ing-card {
    flex: 0 0 33.333%;
    /* 3 items per slide on desktop */
    max-width: 33.333%;
    padding: 0 15px;
    /* Creates gap visually */
    box-sizing: border-box;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 768px) {
    .ing-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ingredients-carousel-container {
        padding: 0 30px;
    }
}


/* --- CHECKOUT SIMULATION --- */
.checkout-simulation {
    padding: 60px 0;
    background: #f4f6f8;
}

.simulation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

/* Simulator Window */
.sim-window {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #ddd;
    position: relative;
}

.sim-header {
    background: #e9ecef;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #ddd;
}

.sim-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    margin-right: 5px;
}

.sim-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    flex: 1;
    text-align: center;
}

.sim-body {
    padding: 20px;
    position: relative;
}

.sim-form .form-group {
    margin-bottom: 12px;
}

.sim-form label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 4px;
}

.sim-form input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    font-size: 0.9rem;
    color: #333;
}

.sim-form .form-row {
    display: flex;
    gap: 10px;
}

.sim-btn {
    width: 100%;
    padding: 12px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    margin-top: 10px;
    cursor: default;
    transition: transform 0.1s;
}

.sim-btn.clicked {
    transform: scale(0.95);
}

/* Success Overlay */
.sim-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 167, 69, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.sim-success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    background: white;
    color: #28a745;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Security Features */
.security-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.security-item {
    background: #0F5132;
    /* Deep Medical Green */
    color: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(15, 81, 50, 0.2);
}

.sec-icon {
    font-size: 1.8rem;
    opacity: 0.9;
}

.sec-text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

/* --- ANVISA SECTION --- */
.anvisa-compliance {
    background: #0F5132;
    /* Deep Medical Green */
    padding: 40px 0;
    color: white;
}

.anvisa-content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.anvisa-logo {
    flex: 0 0 120px;
    text-align: center;
    font-size: 1.2rem;
}

.anvisa-text h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.anvisa-text p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .simulation-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .anvisa-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}