* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #DC143C;
    --primary-dark: #B8102E;
    --secondary: #D2691E;
    --accent: #8B4513;
    --success: #4CAF50;
    --dark: #2D3142;
    --gray: #F5F7FA;
    --border: #E0E5ED;
    --white: #FFFFFF;
    --chocolate: #7B3F00;
    --gradient-1: linear-gradient(135deg, #DC143C 0%, #D2691E 100%);
    --gradient-2: linear-gradient(135deg, #8B4513 0%, #DC143C 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(220, 20, 60, 0.65), rgba(139, 69, 19, 0.65)), url('./images/principal.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 80px 20px 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}

.highlight {
    background: linear-gradient(135deg, #FEC260 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.hero-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-secondary-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.hero-secondary-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.social-proof {
    margin-top: 40px;
}

.stars {
    font-size: 24px;
    margin-bottom: 8px;
}

.social-proof p {
    font-size: 14px;
    opacity: 0.9;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-wave {
        height: 60px;
        bottom: -2px;
    }
}

/* Problem Section */
.problem {
    padding: 80px 20px;
    background: var(--white);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
    font-weight: 800;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.problem-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FFE5E5 0%, #FFDEDE 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon i {
    font-size: 32px;
    color: var(--primary);
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.problem-card p {
    color: #666;
    font-size: 15px;
}

.problem-cta {
    text-align: center;
    margin-top: 60px;
}

.problem-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    display: inline-block;
}

/* Recipes Carousel Section */
.recipes-carousel {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
    width: 100%;
}

.recipes-carousel .container {
    max-width: 100%;
    padding: 0;
}

.recipes-carousel .section-title {
    margin-bottom: 15px;
}

.carousel-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--chocolate);
    font-weight: 600;
    margin-bottom: 50px;
    padding: 0 20px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin: 0;
    padding: 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
    width: max-content;
    padding: 0;
    margin: 0;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    flex-shrink: 0;
    width: 400px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 11 - 30px * 11));
    }
}

@media (max-width: 768px) {
    .carousel-item {
        width: 320px;
        height: 320px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-320px * 11 - 30px * 11));
        }
    }
}

/* Solution Section */
.solution {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray) 100%);
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.label {
    display: inline-block;
    background: var(--gradient-1);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFE5E5 0%, #FFDEDE 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 28px;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
}

.benefit-card p {
    color: #666;
    font-size: 15px;
}

/* Included Section */
.included {
    padding: 80px 20px;
    background: var(--gray);
}

.included-grid {
    max-width: 900px;
    margin: 0 auto;
}

.included-item {
    display: flex;
    gap: 24px;
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--border);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.included-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.included-item.bonus {
    border: 2px solid var(--chocolate);
    position: relative;
}

.included-item.bonus::before {
    content: 'BÔNUS';
    position: absolute;
    top: -12px;
    left: 30px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.included-check {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    font-size: 20px;
}

.included-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.included-content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 8px;
}

.value {
    display: inline-block;
    color: var(--success);
    font-weight: 600;
    font-size: 14px;
}

.included-item.bonus .value {
    text-decoration: line-through;
}

.bonus-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 24px;
    order: -1;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.total-value {
    text-align: center;
    margin-top: 40px;
    font-size: 28px;
    font-weight: 700;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 12px;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFE5E5 0%, #FFF0E6 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-card .stars {
    color: #FFB800;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
}

.author-location {
    font-size: 14px;
    color: #666;
}

/* Offer Section */
.offer {
    padding: 80px 20px;
    background: var(--gradient-2);
}

.offer-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A5B 100%);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offer-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 40px;
    color: var(--dark);
    font-weight: 800;
}

.pricing {
    margin-bottom: 32px;
}

.price-old {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 12px;
}

.price-current {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    color: var(--primary);
    margin-bottom: 12px;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    margin-top: 8px;
}

.amount {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
}

.period {
    font-size: 28px;
    font-weight: 700;
    margin-top: 8px;
}

.price-subtitle {
    font-size: 16px;
    color: #666;
}

.btn-cta {
    background: var(--gradient-1);
    color: var(--white);
    font-size: 18px;
    padding: 20px 40px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    margin-bottom: 24px;
    border-radius: 12px;
    flex-direction: column;
    gap: 4px;
}

.btn-cta i {
    font-size: 20px;
}

.btn-text {
    font-weight: 700;
    font-size: 18px;
}

.btn-subtext {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.urgency {
    background: #FFF3E0;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.urgency p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #E65100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    background: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.countdown-label {
    font-size: 14px;
    margin-top: 8px;
    color: #666;
    font-weight: 600;
}

.payment-methods {
    font-size: 13px;
    color: #666;
}

.payment-methods p {
    margin: 6px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* FAQ */
.faq {
    padding: 80px 20px;
    background: var(--gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    background: var(--gradient-1);
    color: var(--white);
    text-align: center;
}

.final-cta .section-title {
    color: var(--white);
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-fade {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.scroll-animate-fade.animate-in {
    opacity: 1;
}

/* Stagger animation delays */
.scroll-animate:nth-child(1) { transition-delay: 0s; }
.scroll-animate:nth-child(2) { transition-delay: 0.1s; }
.scroll-animate:nth-child(3) { transition-delay: 0.2s; }
.scroll-animate:nth-child(4) { transition-delay: 0.3s; }
.scroll-animate:nth-child(5) { transition-delay: 0.4s; }
.scroll-animate:nth-child(6) { transition-delay: 0.5s; }

/* Guarantee Section - separate from CTA */
.guarantee-section {
    padding: 60px 20px;
    background: var(--white);
}

.guarantee-section .container {
    max-width: 900px;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8F4 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--success);
    box-shadow: var(--shadow);
}

.guarantee-box .guarantee-badge {
    font-size: 64px;
    color: var(--success);
    flex-shrink: 0;
}

.guarantee-box .guarantee-content {
    flex: 1;
}

.guarantee-box h3 {
    font-size: 28px;
    color: var(--success);
    margin-bottom: 12px;
    font-weight: 700;
}

.guarantee-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px 100px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-secondary-image {
        max-width: 100%;
        margin-top: 10px;
    }

    .problem-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .included-item {
        flex-direction: column;
        text-align: center;
    }

    .included-check {
        margin: 0 auto;
    }

    .bonus-image {
        width: calc(100% - 40px);
        height: 200px;
        margin: 20px 20px 0 20px;
        order: 3;
    }

    .offer-box {
        padding: 30px 20px;
    }

    .amount {
        font-size: 56px;
    }

    .currency,
    .period {
        font-size: 24px;
    }

    .btn-cta {
        padding: 18px 24px;
        font-size: 16px;
    }

    .btn-text {
        font-size: 16px;
    }

    .btn-subtext {
        font-size: 12px;
    }

    .countdown-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .guarantee-box .guarantee-badge {
        font-size: 48px;
    }

    .guarantee-box h3 {
        font-size: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .offer-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .countdown {
        gap: 12px;
    }

    .countdown-number {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .countdown-label {
        font-size: 11px;
    }

    .amount {
        font-size: 48px;
    }

    .currency,
    .period {
        font-size: 20px;
    }

    .btn-cta {
        padding: 16px 20px;
    }

    .problem-card,
    .benefit-card {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 28px;
    }
}