:root {
    --primary-color: #D4AF37;
    /* Gold */
    --primary-dark: #B5952F;
    --secondary-color: #4A148C;
    /* Deep Purple */
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --danger: #e74c3c;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c0b55 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.subheadline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Video Wrapper */
.video-wrapper {
    max-width: 800px;
    margin: 0 auto 40px;
    background: #000;
    border: 4px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    background: #333;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(to bottom, #ffeb3b, #fbc02d);
    color: #000;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(249, 168, 37, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #fff;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 168, 37, 0.6);
    background: linear-gradient(to bottom, #fff176, #fdd835);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Sections General */
section {
    padding: 60px 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Problem Section */
.problem {
    background: var(--white);
    text-align: center;
}

.problem h2 {
    color: var(--danger);
}

.problem-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.highlight {
    background-color: #fff3cd;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

/* Solution Section (Storytelling) */
.solution {
    background-color: #f4f4f4;
}

.intro-text {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.story-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.story-block {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.story-block:hover {
    transform: translateY(-5px);
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    max-width: 400px;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-text {
    flex: 1;
}

.story-text h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.story-text p {
    font-size: 1.1rem;
    color: #555;
}

/* Benefits Section */
.benefits {
    background: var(--secondary-color);
    color: var(--white);
}

.benefits h2 {
    color: var(--primary-color);
    text-align: center;
}

.check-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.check-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.check-list li::before {
    content: '✅';
    /* Changed to checkmark emoji for better visibility */
    position: absolute;
    left: 0;
    top: 2px;
}

/* Bonuses Section */
.bonuses {
    background: var(--white);
    text-align: center;
}

.bonuses h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.sub-title {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #666;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bonus-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.bonus-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    min-height: 50px;
    /* Align titles */
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    min-height: 60px;
    /* Align text */
}

.bonus-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 15px;
    display: block;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bonus-image-placeholder {
    width: 140px;
    height: 190px;
    background-color: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 5px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    font-weight: bold;
}

.bonus-card .value {
    display: block;
    margin-top: 15px;
    padding: 10px 0;
    font-weight: bold;
    color: var(--danger);
    background: #fff5f5;
    border-radius: 5px;
}

/* Offer Stack */
.stack-list {
    list-style: none;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: left;
    display: inline-block;
    width: 100%;
    max-width: 600px;
}

.stack-list li {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.stack-list li:last-child {
    border-bottom: none;
}

.total-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 30px;
}

.price-box {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: 'OFERTA';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--danger);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.limited-time {
    color: var(--danger);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.final-price-label {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.payment-info {
    font-size: 1rem;
    color: #777;
    margin-bottom: 5px;
}

.digital-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Countdown */
.countdown-container {
    background: var(--secondary-color);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    max-width: 500px;
}

.countdown-sub {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Courier New', monospace;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 5px;
    min-width: 70px;
}

.time-block span:first-child {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.time-block .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.separator {
    font-size: 2rem;
    font-weight: bold;
    margin-top: -20px;
}

/* Guarantee Badge */
.guarantee-badge {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guarantee-badge p {
    font-weight: bold;
    color: #555;
    margin-top: 10px;
}

/* Audience Section */
.audience {
    background: #f9f9f9;
}

.audience h2 {
    text-align: center;
    color: var(--secondary-color);
}

/* Testimonials Section (New) */
.testimonials {
    background: var(--white);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-left: 5px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #FFD700;
}

/* Author Section */
.author {
    background: var(--secondary-color);
    color: #fff;
}

.author h2 {
    color: var(--primary-color);
    text-align: center;
}

.author-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Section (New) */
.faq {
    background: #f4f4f4;
}

.faq h2 {
    text-align: center;
    color: var(--secondary-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    background: #fff;
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.guarantee-box {
    background: #333;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto 30px;
    border: 1px solid #444;
}

.guarantee-box h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #777;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .story-block {
        flex-direction: column;
        text-align: center;
    }

    .story-block.reverse {
        flex-direction: column;
    }

    .story-image {
        max-width: 100%;
    }

    .price {
        font-size: 3rem;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 100%;
    }
}

/* Scroll Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}