:root {
    --primary-color: #0d9488;
    /* Teal 600 */
    --primary-dark: #0f766e;
    /* Teal 700 */
    --secondary-color: #f43f5e;
    /* Rose 500 */
    --secondary-dark: #e11d48;
    /* Rose 600 */
    --text-dark: #1e293b;
    /* Slate 800 */
    --text-light: #64748b;
    /* Slate 500 */
    --bg-light: #f0fdfa;
    /* Teal 50 */
    --white: #ffffff;
    --danger: #ef4444;
    /* Red 500 */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px;
    /* Space for sticky CTA */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-container {
    max-width: 800px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    /* Coral for CTA */
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 25px -5px rgba(244, 63, 94, 0.4);
}

.btn-full {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: 15px;
}

.btn-large {
    font-size: 1.3rem;
    padding: 20px 50px;
}

/* Sweep Animation */
.btn-sweep::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-sweep:hover::after {
    left: 100%;
    transition: 0.5s;
}

/* 1. Top Banner Cycling */
.top-banner-cycling {
    background: linear-gradient(90deg, #115e59, #0d9488);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.fade-text {
    transition: opacity 0.5s ease-in-out;
}

/* 2. Popup Notification */
.popup-notification {
    position: fixed;
    bottom: 90px;
    /* Adjusted for sticky CTA */
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2000;
    max-width: 350px;
    border: 1px solid rgba(13, 148, 136, 0.2);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup-notification.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    display: flex;
}

.popup-notification.visible {
    opacity: 1;
    transform: translateY(0);
    display: flex;
}

.popup-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.popup-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.popup-btn {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3000;
    border-top: 1px solid #e2e8f0;
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-price {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.sticky-timer {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* 3. Image Banners */
.image-banner-section {
    width: 100%;
    overflow: hidden;
    margin-bottom: -5px;
    /* Remove gap */
    position: relative;
}

.responsive-banner {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease-out;
}

/* Parallax Effect Class */
.parallax-banner {
    transform: scale(1.1);
}

/* Hero Text Overlay */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeIn 1s ease-out;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* 4. Pain Points (Dolores) */
.pain-points-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f0fdfa 100%);
}

.ds-card-dolores {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid #ccfbf1;
    transition: transform 0.3s ease;
}

.ds-card-dolores:hover {
    transform: translateY(-5px);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.pain-grid-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pain-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff1f2;
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    transition: all 0.3s ease;
    opacity: 0;
    /* For staggered animation */
    animation: fadeInUp 0.5s forwards;
}

.pain-item:nth-child(1) {
    animation-delay: 0.1s;
}

.pain-item:nth-child(2) {
    animation-delay: 0.2s;
}

.pain-item:nth-child(3) {
    animation-delay: 0.3s;
}

.pain-item:nth-child(4) {
    animation-delay: 0.4s;
}

.pain-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pain-item:hover {
    transform: translateX(10px) scale(1.01);
    box-shadow: var(--shadow-md);
    background: #ffe4e6;
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
}

.icon-circle.red {
    background: var(--secondary-color);
    color: white;
}

.highlight-red {
    color: var(--secondary-color);
    font-weight: 700;
}

/* 5. Benefits */
.benefits-section {
    padding: 80px 0;
    background: #ccfbf1;
    /* Teal 100 */
}

.ds-card-beneficios {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid #99f6e4;
}

.benefits-grid-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f0fdfa;
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
}

.benefit-item:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-item:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-item:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-item:nth-child(5) {
    animation-delay: 0.5s;
}

.benefit-item:hover {
    transform: translateX(10px) scale(1.01);
    box-shadow: var(--shadow-md);
    background: #e0f2f1;
}

.icon-circle.green {
    background: var(--primary-color);
    color: white;
}

.highlight-green {
    color: var(--primary-color);
    font-weight: 700;
}

.bounce-arrow {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.benefit-footer {
    text-align: center;
    margin-top: 25px;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

/* 6. Product Info Section */
.product-info-section {
    padding: 80px 0;
    background: var(--white);
}

.product-card-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    /* 3D Tilt Effect Base */
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-gallery {
    text-align: center;
    position: relative;
}

.main-product-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-2xl);
    transition: transform 0.3s ease;
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.downloads-badge {
    display: inline-block;
    background: #f1f5f9;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
    width: fit-content;
    font-weight: 600;
}

.product-title {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.rating-stars {
    color: #fbbf24;
    /* Amber 400 */
    font-size: 1.4rem;
    font-weight: 700;
}

.rating-count {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
}

.price-box {
    margin: 15px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.4rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.currency {
    font-size: 1.2rem;
    color: var(--text-light);
}

.badges-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.badge-sale {
    background: var(--secondary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
}

.badge-limited {
    background: var(--text-dark);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.payment-info {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.live-viewers-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    background: #ecfdf5;
    padding: 10px 15px;
    border-radius: 10px;
    width: fit-content;
}

.pulse-dot-green {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.countdown-box {
    background: #fff;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin: 20px 0;
    box-shadow: var(--shadow-md);
    animation: pulseUrgency 2s infinite;
}

@keyframes pulseUrgency {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(244, 63, 94, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 63, 94, 0);
    }
}

.timer-display {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: monospace;
    letter-spacing: 2px;
}

.cupos-text {
    margin-top: 10px;
    font-weight: 600;
}

.cupos-num {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.payment-methods-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 2rem;
    color: var(--text-light);
    margin-top: 15px;
}

.trust-box {
    margin-top: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid transparent;
    animation: borderRGB 5s infinite;
}

@keyframes borderRGB {
    0% {
        border-color: #fca5a5;
    }

    50% {
        border-color: #5eead4;
    }

    100% {
        border-color: #fca5a5;
    }
}

/* 8. Premium Text Box */
.text-box-section {
    padding: 60px 0;
    background: #f0fdfa;
}

.premium-text-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: inline-block;
    margin-bottom: 30px;
    font-size: 1.2rem;
    border: 1px solid #ccfbf1;
    max-width: 800px;
}

.text-gold {
    color: #d97706;
    font-weight: 800;
}

.highlight-green-large {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.5rem;
}

/* 11. Bonuses Text */
.gift-badge {
    background: var(--secondary-color);
    color: white;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.gift-title {
    font-size: 3rem;
    font-weight: 900;
    background: -webkit-linear-gradient(45deg, var(--secondary-color), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
}

.gift-subtitle {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* 16. CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--white);
}

/* Payment Badges */
.payment-methods-container {
    margin-top: 20px;
}

.payment-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.pay-badge:hover {
    transform: translateY(-2px);
}

.pay-badge.shop-pay {
    background: #5a31f4;
}

.pay-badge.paypal {
    background: #003087;
}

.pay-badge.visa {
    background: #1a1f71;
}

.pay-badge.mastercard {
    background: #eb001b;
}

/* 17. Summary Stack */
.summary-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ccfbf1 0%, #ffe4e6 100%);
}

.summary-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-2xl);
    border: 3px solid var(--primary-color);
}

.summary-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 10px;
}

.summary-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.summary-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f0fdfa;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.2s;
}

.summary-item:hover {
    transform: scale(1.02);
}

.check-icon {
    background: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.total-value {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.3rem;
}

.crossed {
    text-decoration: line-through;
    color: var(--danger);
    opacity: 0.7;
}

.final-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-top: 5px;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .product-card-main {
        flex-direction: row;
        align-items: flex-start;
    }

    .product-gallery,
    .product-details {
        flex: 1;
    }

    .sticky-mobile-cta {
        display: none;
    }

    /* Hide on desktop */
}

/* --- NEW SECTIONS STYLES (Reconstruction) --- */

/* Features Grid (What's Inside) */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-desc {
    color: var(--text-light);
    font-size: 1rem;
}

/* Detailed Bonuses Section */
.bonuses-detailed-section {
    padding: 80px 0;
    background: #fff1f2;
    /* Light Rose */
}

.bonus-card-detailed {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    border-left: 8px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

/* Premium Bonus Style */
.premium-bonus {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 63, 94, 0.2);
    box-shadow: 0 10px 30px -5px rgba(244, 63, 94, 0.15);
}

.bonus-card-detailed:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.bonus-icon-large {
    font-size: 4rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.bonus-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.bonus-value {
    display: inline-block;
    background: #ffe4e6;
    color: var(--secondary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
    color: white;
    text-align: center;
}

.guarantee-badge {
    width: 120px;
    height: 120px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3.5rem;
    color: #78350f;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.guarantee-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.guarantee-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f0fdfa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    transition: background 0.3s;
    width: 100%;
    border: none;
    background: none;
    text-align: left;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
    /* Adjust based on content */
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin: 15px 0;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info .name {
    font-weight: 700;
    color: var(--text-dark);
}

.author-info .location {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    background: linear-gradient(135deg, #ccfbf1 0%, #f0fdfa 100%);
    height: 200px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.gallery-caption {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 15px;
    color: var(--primary-dark);
}

/* Community Marquee */
.community-marquee {
    background: var(--primary-dark);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    margin: 0 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Refinements */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
    }

    .product-card-main {
        padding: 20px;
    }

    .price-row {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .new-price {
        font-size: 3.5rem;
    }

    .bonus-card-detailed {
        flex-direction: column;
        text-align: center;
    }

    .bonus-icon-large {
        margin-bottom: 10px;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .gift-title {
        font-size: 2rem;
    }

    .summary-box {
        padding: 30px 20px;
    }

    .summary-title {
        font-size: 2rem;
    }

    .guarantee-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-text-overlay {
        padding: 20px;
        width: 95%;
    }

    .pay-badge {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

/* Price Stickers for Images */
.hero-price-sticker {
    position: absolute;
    top: -30px;
    right: -30px;
    background: var(--secondary-color);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    transform: rotate(15deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 4px solid white;
    z-index: 10;
    animation: pulse 2s infinite;
}

.cover-price-sticker {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fbbf24;
    /* Amber */
    color: #78350f;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.5rem;
    transform: rotate(-10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid white;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-price-sticker {
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
        top: -20px;
        right: -10px;
    }

    .cover-price-sticker {
        font-size: 1.2rem;
        padding: 5px 15px;
    }
}