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

:root {
    --primary-red: #8B0000;
    --gold: #D4AF37;
    --light-beige: #FFF8E7;
    --soft-brown: #5A3E2B;
    --white: #FFFFFF;
    --text-dark: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #EAEAEA;
    background: linear-gradient(180deg, #140B0D 0%, #1E1416 100%);
    background-attachment: fixed;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Topbar */
.topbar {
    background-color: var(--gold);
    color: var(--primary-red);
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.timer {
    font-variant-numeric: tabular-nums;
    background: var(--primary-red);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
}

.hero-pre-title {
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
    background: var(--primary-red);
    padding: 5px 15px;
    border-radius: 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 177.77%; /* 9:16 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 360px; /* Reduzido para não ficar gigante no desktop */
    margin: 0 auto 40px auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    background-color: #000;
}

.video-wrapper iframe, .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid var(--gold);
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(139, 0, 0, 0.3);
    cursor: pointer;
}

.cta-button:hover {
    background-color: #660000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
}

.cta-button.large {
    font-size: 1.4rem;
    padding: 20px 50px;
}

.secure-payment {
    font-size: 0.85rem;
    color: #2e7d32;
    margin-top: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.and-more {
    font-size: 1.8rem;
    color: var(--gold);
    margin-top: 20px;
    font-style: italic;
    text-align: center;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Presentation Section */
.presentation {
    padding: 60px 0;
    text-align: center;
}

.presentation-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.presentation-logo {
    max-width: 200px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 4px solid var(--gold);
}

.presentation-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #EAEAEA;
    margin-bottom: 15px;
}

.presentation-text p:last-child {
    margin-bottom: 0;
}

/* Benefits Section */
.benefits {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.benefits-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-list li {
    font-size: 1.2rem;
    color: var(--soft-brown);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    background: var(--light-beige);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.benefits-list .icon {
    margin-right: 15px;
    font-size: 1.5rem;
}

/* Desire Section */
.desire {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.desire-text {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* What You Get Section */
.what-you-get {
    padding: 60px 0;
}

.images-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-item {
    text-align: center;
    width: 100%;
}

.image-title {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.images-stack img {
    max-width: 100%;
    max-height: 700px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 4px solid var(--white);
}

/* Restaurants Section */
.restaurants {
    padding: 80px 0;
    color: var(--white);
    overflow: hidden;
}

.restaurants .section-title {
    color: var(--gold);
    margin-bottom: 10px;
}

.restaurants-subtitle {
    text-align: center;
    color: var(--light-beige);
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-style: italic;
}

.restaurants-carousel::before {
    background: linear-gradient(to right, #140B0D 0%, transparent 100%);
}

.restaurants-carousel::after {
    background: linear-gradient(to left, #140B0D 0%, transparent 100%);
}

.restaurants .carousel-slide img {
    height: 350px;
    border: 3px solid var(--gold);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Gradient masks for smooth fade on edges */
.carousel-container::before,
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #140B0D 0%, transparent 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #140B0D 0%, transparent 100%);
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

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

.carousel-slide {
    display: flex;
    gap: 30px;
    padding-right: 30px;
}

.carousel-slide img {
    height: 350px;
    width: auto;
    max-width: 80vw;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    object-fit: contain;
}

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

/* Static Testimonials */
.static-testimonials {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.static-testimonial-card {
    background: var(--light-beige);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    color: var(--text-dark);
    flex: 1;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-name {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-bottom: 10px;
    font-weight: 700;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.5;
}

/* Bonus Section */
.bonuses {
    padding: 60px 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-card {
    background-color: var(--light-beige);
    border: 2px dashed var(--gold);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    color: #000; /* Letras pretas */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.bonus-title {
    font-size: 1.2rem;
    color: #000; /* Letras pretas */
    margin-bottom: 15px;
    font-weight: 700;
}

.bonus-price {
    font-size: 1.1rem;
    color: #000; /* Letras pretas */
}

.bonus-price .strike {
    text-decoration: line-through;
    color: #000; /* Tracejado na cor preta */
    margin-right: 5px;
}

.bonus-price .free {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
}

/* Offers Section */
.offers {
    padding: 80px 0;
}

.offers-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.offer-card {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.offer-card.basic {
    background-color: var(--white);
    color: #000;
    border: 1px solid #ddd;
    transform: scale(0.95);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.badge-basic {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #eee;
    color: #666;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

.offer-card.premium {
    background: linear-gradient(145deg, #8B0000, #1A0000);
    color: var(--white);
    border: 2px solid var(--gold);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.2);
}

.premium-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.tag {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.offer-card.premium .offer-title {
    color: var(--gold);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--primary-red);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.offer-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.offer-card.basic .offer-title {
    color: #000;
}

.offer-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.offer-card.premium .offer-price {
    color: var(--white);
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.offer-features, .offer-bonus ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.offer-features li, .offer-bonus li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.offer-features li::before, .offer-bonus li::before {
    content: '🎁';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.offer-bonus {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.offer-card.premium .offer-bonus {
    background: rgba(255, 255, 255, 0.1);
}

.offer-bonus h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.offer-card.basic .offer-bonus h4 {
    color: #000;
}

.offer-card.premium .offer-bonus h4 {
    color: var(--gold);
}

.offer-card.basic .cta-button {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.offer-card.basic .cta-button:hover {
    background-color: #660000;
}

.premium-btn {
    background: linear-gradient(to right, #D4AF37, #F3E5AB);
    color: #1A0000;
    border: none;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.premium-btn:hover {
    background: linear-gradient(to right, #F3E5AB, #D4AF37);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

/* Guarantee Section */
.guarantee {
    padding: 60px 0;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-beige);
    padding: 40px;
    border-radius: 12px;
    border: 2px dashed var(--gold);
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    margin-right: 30px;
}

.guarantee-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.guarantee-text p {
    color: var(--soft-brown);
    font-size: 1.1rem;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
}

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

.accordion-item {
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: var(--light-beige);
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--soft-brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #f5ebd3;
}

.accordion-header .arrow {
    transition: transform 0.3s;
    font-size: 0.9rem;
}

.accordion-header.active .arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--white);
}

.accordion-content p {
    padding: 20px;
    color: var(--text-dark);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
}

/* Premium Footer */
.premium-footer {
    background-color: #0D0D0D;
    color: #EAEAEA;
    position: relative;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(200, 169, 106, 0.3);
    overflow: hidden;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

/* Subtle background texture and glow */
.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.footer-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(200, 169, 106, 0.15) 0%, rgba(13, 13, 13, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    font-family: 'Playfair Display', 'Montserrat', serif;
    font-size: 2.5rem;
    color: #C8A96A;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.footer-tagline {
    font-family: 'Playfair Display', 'Montserrat', serif;
    font-size: 1.2rem;
    color: #C8A96A;
    font-style: italic;
    font-weight: 400;
    opacity: 0.9;
}

.footer-description {
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.8;
    color: #A0A0A0;
    font-weight: 300;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: #EAEAEA;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #C8A96A;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #C8A96A;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    font-size: 0.85rem;
    color: #777777;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .premium-footer {
        padding: 60px 20px 30px;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
    
    .footer-nav {
        gap: 20px;
        flex-direction: column;
    }
}

/* Sales Notification */
.sales-notification {
    position: fixed;
    top: 70px; /* Below topbar */
    right: -400px; /* Hidden by default */
    width: 320px;
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 15px;
    z-index: 1000;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.sales-notification.show {
    right: 20px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.notification-text .notification-action {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.85rem;
    margin: 2px 0;
}

.notification-text .notification-time {
    color: #888;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .static-testimonials {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .offers-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .offer-card.premium {
        transform: scale(1);
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .sales-notification {
        top: auto;
        bottom: 20px;
        right: 20px;
        transform: translateY(150%);
        transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        width: calc(100% - 40px);
    }
    
    .sales-notification.show {
        transform: translateY(0);
        right: 20px;
    }
}
