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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: linear-gradient(135deg, #6B00B6 0%, #3D005B 100%);
    min-height: 100vh;
}

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

/* Header Sticky */
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(59, 0, 91, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(199, 125, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #C77DFF;
}

.cta-header {
    background: linear-gradient(135deg, #B5FF00, #8FCC00);
    color: #3D005B;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #6B00B6 0%, #3D005B 50%, #6B00B6 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(199, 125, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(181, 255, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #C77DFF, #B5FF00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.5;
}

/* Cronômetro */
.countdown-container {
    margin-bottom: 35px;
    text-align: center;
}

.countdown-text {
    font-size: 1.1rem;
    color: #C77DFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #C77DFF;
    backdrop-filter: blur(10px);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #C77DFF, #6B00B6);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-item span {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.countdown-item label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: bold;
    color: #C77DFF;
    animation: pulse 1s infinite;
}

/* CTAs */
.cta-primary, .cta-giant, .cta-final {
    display: inline-block;
    background: linear-gradient(135deg, #B5FF00, #8FCC00);
    color: #3D005B;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-giant {
    font-size: 1.4rem;
    padding: 25px 50px;
    margin: 30px 0;
    width: 100%;
    max-width: 500px;
}

.cta-final {
    font-size: 1.3rem;
    padding: 22px 45px;
}

.glow-hover:hover {
    box-shadow: 0 0 30px rgba(181, 255, 0, 0.6);
    transform: translateY(-2px);
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(181, 255, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(181, 255, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(181, 255, 0, 0);
    }
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item svg {
    color: #C77DFF;
}

/* Hero Image */
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Quick Proofs */
.quick-proofs {
    padding: 80px 0;
    background: linear-gradient(135deg, #3D005B 0%, #6B00B6 100%);
}

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

.proof-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 125, 255, 0.3);
    transition: all 0.3s ease;
}

.proof-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.proof-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.proof-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #C77DFF;
}

.proof-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Content Section */
.content-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #6B00B6 0%, #3D005B 100%);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #FFFFFF;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #C77DFF, #B5FF00);
    border-radius: 2px;
}

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

.content-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 125, 255, 0.3);
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #C77DFF;
}

.content-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.transparency-notice {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border-left: 4px solid #C77DFF;
}

.transparency-notice p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #3D005B 0%, #6B00B6 100%);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #C77DFF;
    transform: scale(1.2);
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #3D005B 0%, #1A0029 50%, #3D005B 100%);
    position: relative;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(199, 125, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.offer-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 30px;
    border: 2px solid rgba(199, 125, 255, 0.5);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 1;
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #C77DFF;
}

.price-container {
    margin-bottom: 40px;
}

.old-price {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.current-price {
    font-size: 4rem;
    font-weight: 900;
    color: #B5FF00;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

.savings {
    font-size: 1.3rem;
    color: #C77DFF;
    font-weight: 600;
}

.offer-countdown {
    margin: 40px 0;
}

.offer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.benefit {
    background: rgba(181, 255, 0, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    color: #B5FF00;
    font-weight: 600;
    border: 1px solid rgba(181, 255, 0, 0.3);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(199, 125, 255, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #6B00B6 0%, #3D005B 100%);
}

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

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 125, 255, 0.3);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(199, 125, 255, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #C77DFF;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background-image: url('../images/Whats-App-Image-2025-08-08-at-23-59-24.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 0, 91, 0.8), rgba(107, 0, 182, 0.6));
    z-index: 1;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.final-cta-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: #1A0029;
    padding: 40px 0;
    border-top: 1px solid rgba(199, 125, 255, 0.3);
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C77DFF;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px 15px;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 3rem;
    }
    
    .cta-primary, .cta-giant, .cta-final {
        width: 100%;
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .final-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .final-cta-content p {
        font-size: 1.2rem;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-bar {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .offer-container {
        padding: 40px 20px;
    }
    
    .content-card, .proof-item {
        padding: 30px 20px;
    }
    
    .final-cta {
        background-attachment: scroll;
    }
}