* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark: #1f2937;
    --light: #f9fafb;
    --gray: #6b7280;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero VSL Section */
.hero-vsl {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 0 4rem;
    color: var(--white);
}

.headline-section {
    text-align: center;
    margin-bottom: 3rem;
}

.pre-headline {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.logo-image {
    max-width: 150px;
    height: auto;
    filter: brightness(1.1) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

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

.main-headline {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.main-headline .highlight {
    color: #fbbf24;
    position: relative;
    display: inline-block;
}

.sub-headline {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* VSL Container */
.vsl-container {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: #000;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper vturb-smartplayer {
    width: 100%;
    height: auto;
    border: none;
    display: block;
}

.video-cta-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    background: rgba(251, 191, 36, 0.2);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #fbbf24;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 3rem 0 2rem;
}

.btn-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.cta-text {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.cta-subtext {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
}

.guarantee-text {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-card.featured h3 {
    color: var(--white);
}

.benefit-card p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.benefit-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-value {
    display: block;
    font-weight: 600;
    color: var(--success-color);
    font-size: 1.125rem;
}

.benefit-card.featured .benefit-value {
    color: #fbbf24;
}

/* Total Value Box */
.total-value {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.value-text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1.25rem;
}

.offer-text {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.new-price {
    color: var(--success-color);
    font-size: 2.5rem;
}

.discount-badge {
    display: inline-block;
    background: var(--danger-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

/* Carrossel de Vídeos */
.testimonials-carousel {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-container {
    overflow: hidden;
    flex: 1;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: none;
}

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

.video-testimonial {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.video-testimonial vturb-smartplayer {
    display: block;
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto;
}

/* Botões do Carrossel */
.carousel-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn span {
    line-height: 1;
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.3);
}

.indicator:hover {
    opacity: 0.7;
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.guarantee-badge {
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.guarantee-badge h3 {
    font-size: 2rem;
    font-weight: 700;
}

.guarantee-description {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.cta-headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.price-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 500px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.price-label {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.price-old {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
}

.price-current {
    font-size: 3rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.price-cash {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.price-box-logo {
    max-width: 150px;
    height: auto;
    margin: 1.5rem 0;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.price-box-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Botão CTA dentro do Price Box */
.price-box .btn-cta-final {
    margin: 1.5rem 0 0 0;
    width: 100%;
}

.btn-cta-final {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
}

.btn-cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.urgency-box {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #ef4444;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 600px;
}

.urgency-box p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.urgency-box strong {
    color: #fbbf24;
}

.payment-methods {
    margin-top: 2rem;
    opacity: 0.9;
}

.payment-methods p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.payment-icons {
    font-size: 1.125rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--light);
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
}

.footer p {
    opacity: 0.8;
    margin: 0.5rem 0;
    font-size: 0.875rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        max-width: 150px;
    }
    
    .main-headline {
        font-size: 1.75rem;
    }
    
    .sub-headline {
        font-size: 1rem;
    }
    
    .btn-cta, .btn-cta-final {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .price-current {
        font-size: 2rem;
    }
    
    .cta-headline {
        font-size: 1.875rem;
    }
    
    /* Carrossel Mobile */
    .testimonials-carousel {
        max-width: 100%;
        gap: 0.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .video-testimonial vturb-smartplayer {
        max-width: 100% !important;
    }
    
    /* Logo - Mobile */
    .logo-image {
        max-width: 120px;
    }
    
    /* Logo no Price Box - Mobile */
    .price-box-logo {
        max-width: 120px;
    }
    
    /* Botão CTA no Price Box - Mobile */
    .price-box .btn-cta-final {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 1.5rem;
    }
    
    .video-wrapper {
        border-radius: 10px;
    }
    
    .benefit-card, .testimonial-card, .faq-item {
        padding: 1.5rem;
    }
}
