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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #00b359;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav a:hover {
    color: #00b359;
}

.btn-nav {
    background: linear-gradient(135deg, #00b359 0%, #00cc6a 100%);
    color: #000 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    color: #000 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    padding: 120px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* ===== SISTEMA COMPLETO DE EFEITOS VISUAIS CYBERPUNK ===== */

/* 4. BARRA DE PROGRESSO DE SCROLL */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00a040, #008f2a);
    z-index: 10001;
    transition: width 0.1s ease;
    pointer-events: none;
}

/* 1. CONTAINER PARA PARTÍCULAS FLUTUANTES */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00a040;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Animações para partículas flutuantes */
@keyframes floatUp {
    0% { 
        transform: translateY(0px) translateX(0px); 
        opacity: 0.2; 
    }
    25% { 
        transform: translateY(-20px) translateX(10px); 
        opacity: 0.5; 
    }
    50% { 
        transform: translateY(-10px) translateX(-15px); 
        opacity: 0.3; 
    }
    75% { 
        transform: translateY(-30px) translateX(5px); 
        opacity: 0.4; 
    }
    100% { 
        transform: translateY(-40px) translateX(-10px); 
        opacity: 0.2; 
    }
}

@keyframes floatDown {
    0% { 
        transform: translateY(0px) translateX(0px); 
        opacity: 0.3; 
    }
    25% { 
        transform: translateY(15px) translateX(-8px); 
        opacity: 0.5; 
    }
    50% { 
        transform: translateY(25px) translateX(12px); 
        opacity: 0.2; 
    }
    75% { 
        transform: translateY(10px) translateX(-5px); 
        opacity: 0.4; 
    }
    100% { 
        transform: translateY(30px) translateX(8px); 
        opacity: 0.3; 
    }
}

@keyframes floatSide {
    0% { 
        transform: translateX(0px) translateY(0px); 
        opacity: 0.4; 
    }
    25% { 
        transform: translateX(20px) translateY(-5px); 
        opacity: 0.2; 
    }
    50% { 
        transform: translateX(-15px) translateY(10px); 
        opacity: 0.5; 
    }
    75% { 
        transform: translateX(10px) translateY(-8px); 
        opacity: 0.3; 
    }
    100% { 
        transform: translateX(-5px) translateY(5px); 
        opacity: 0.4; 
    }
}

/* 2. MATRIX RAIN CANVAS */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
}

/* 3. GRADIENTES RADIAIS DE LUZ - Aplicado na Hero Section */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 65, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Otimizações para Mobile */
@media (max-width: 768px) {
    .particle {
        width: 1px;
        height: 1px;
    }
    
    .matrix-rain {
        opacity: 0.05;
    }
    
    .scroll-progress {
        height: 2px;
    }
}

@media (max-width: 480px) {
    .matrix-rain {
        opacity: 0.03;
    }
}
.trading-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
    overflow: hidden;
}

.trading-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.05) 50%, transparent 70%),
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.08) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

.trading-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background-image: 
        /* Linhas de gráfico principais */
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.3) 2%, transparent 4%),
        linear-gradient(90deg, transparent 20%, rgba(0, 255, 136, 0.2) 22%, transparent 24%),
        linear-gradient(90deg, transparent 40%, rgba(0, 255, 136, 0.25) 42%, transparent 44%),
        linear-gradient(90deg, transparent 60%, rgba(0, 255, 136, 0.15) 62%, transparent 64%),
        linear-gradient(90deg, transparent 80%, rgba(0, 255, 136, 0.2) 82%, transparent 84%),
        
        /* Linhas verticais de tempo */
        linear-gradient(0deg, transparent 0%, rgba(0, 255, 136, 0.1) 1%, transparent 2%),
        linear-gradient(0deg, transparent 25%, rgba(0, 255, 136, 0.08) 26%, transparent 27%),
        linear-gradient(0deg, transparent 50%, rgba(0, 255, 136, 0.12) 51%, transparent 52%),
        linear-gradient(0deg, transparent 75%, rgba(0, 255, 136, 0.09) 76%, transparent 77%),
        
        /* Pontos de dados */
        radial-gradient(circle at 15% 25%, rgba(0, 255, 136, 0.4) 1px, transparent 2px),
        radial-gradient(circle at 35% 45%, rgba(0, 255, 136, 0.3) 1px, transparent 2px),
        radial-gradient(circle at 55% 35%, rgba(0, 255, 136, 0.5) 1px, transparent 2px),
        radial-gradient(circle at 75% 55%, rgba(0, 255, 136, 0.3) 1px, transparent 2px),
        radial-gradient(circle at 85% 25%, rgba(0, 255, 136, 0.4) 1px, transparent 2px);
    
    background-size: 
        200px 100px, 180px 100px, 220px 100px, 160px 100px, 190px 100px,
        100px 150px, 100px 180px, 100px 200px, 100px 160px,
        50px 50px, 60px 60px, 70px 70px, 55px 55px, 65px 65px;
    
    animation: tradingFlow 15s linear infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes tradingFlow {
    0% { transform: translateX(-10%) translateY(-5%); }
    25% { transform: translateX(-5%) translateY(-10%); }
    50% { transform: translateX(0%) translateY(-5%); }
    75% { transform: translateX(-5%) translateY(0%); }
    100% { transform: translateX(-10%) translateY(-5%); }
}

@keyframes tradingFloat {
    0%, 100% { transform: translateX(0) scale(1); }
    25% { transform: translateX(-10px) scale(1.02); }
    50% { transform: translateX(10px) scale(0.98); }
    75% { transform: translateX(-5px) scale(1.01); }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 800px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00b359 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.highlight-box {
    background: linear-gradient(135deg, #00b359 0%, #008f4a 100%);
    color: #000;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 179, 89, 0.3);
}

.highlight-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stats {
    display: flex;
    gap: 4rem;
    margin: 2rem 0;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00b359, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    color: #ccc;
    font-size: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin: 2rem 0;
    color: #ccc;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #00b359 0%, #008f4a 100%);
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 179, 89, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 179, 89, 0.4);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

/* Video Section - Maior destaque */
.video-section {
    width: 100%;
    max-width: 1000px;
    margin: 3rem 0;
}

.video-container-large {
    position: relative;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 179, 89, 0.2);
    border: 3px solid #00b359;
    background: transparent;
}

.video-embed {
    position: relative;
    width: 100%;
    background: transparent;
    overflow: hidden;
    border-radius: 8px;
}

.video-embed iframe,
.video-embed wistia-player,
.video-embed vturb-smartplayer {
    width: 100% !important;
    height: auto !important;
    min-height: 400px !important;
    border-radius: 8px;
    display: block;
    background: transparent;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(26, 26, 26, 0.8);
    color: #ccc;
    z-index: 1;
    pointer-events: none;
}

.video-overlay i {
    font-size: 5rem;
    color: #00b359;
    margin-bottom: 1.5rem;
}

.video-overlay p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-overlay small {
    color: #888;
    font-size: 1rem;
}

/* Quando há vídeo real, esconder o overlay */
.video-embed:has(iframe[src]:not([src="about:blank"])) .video-overlay,
.video-embed:has(wistia-player) .video-overlay,
.video-embed:has(vturb-smartplayer) .video-overlay {
    display: none;
}

.video-placeholder-large {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ccc;
    position: relative;
}

.video-placeholder-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 179, 89, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.video-placeholder-large i {
    font-size: 5rem;
    color: #00b359;
    margin-bottom: 1.5rem;
    z-index: 1;
    position: relative;
}

.video-placeholder-large p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    z-index: 1;
    position: relative;
}

.video-placeholder-large small {
    color: #888;
    font-size: 1rem;
    z-index: 1;
    position: relative;
}

/* About Nico Section */
.about-nico {
    background: #1a1a1a;
    padding: 80px 0;
    color: #fff;
}

.about-nico h2 {
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #00b359, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px dashed #00b359;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ccc;
}

.image-placeholder i {
    font-size: 3rem;
    color: #00b359;
    margin-bottom: 1rem;
}

/* Method Section */
.method {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    color: #fff;
}

.method h2 {
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #00b359, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.method-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #ccc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00b359;
}

.feature-card i {
    font-size: 2.5rem;
    color: #00b359;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #00b359, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: #ccc;
}

/* Results Section */
.results {
    background: #1a1a1a;
    padding: 80px 0;
    color: #fff;
}

.results h2 {
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #00b359, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== TESTIMONIALS SLIDER COM NAVEGAÇÃO ===== */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 40px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    width: calc(350px * 8); /* 8 slides de 350px cada */
}

.testimonial-slide {
    flex: 0 0 350px;
    margin-right: 20px;
    background: rgba(0, 179, 89, 0.1);
    border: 1px solid rgba(0, 179, 89, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.testimonial-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

/* Botões de navegação */
.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 179, 89, 0.8);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.testimonials-nav:hover {
    background: #00b359;
    transform: translateY(-50%) scale(1.1);
}

.testimonials-nav.prev {
    left: 20px;
}

.testimonials-nav.next {
    right: 20px;
}

/* Indicadores (dots) */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

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

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

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

.testimonial-item {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 15px;
    border: 2px solid #00b359;
    box-shadow: 0 0 20px rgba(0, 179, 89, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 179, 89, 0.3);
}

.testimonial-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    object-fit: contain;
}

/* ===== FOTO DO NICO ===== */
.nico-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    border: 3px solid #00a040;
    box-shadow: 0 0 30px rgba(0, 160, 64, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nico-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 160, 64, 0.5);
}

.testimonial-placeholder {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px dashed #00b359;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ccc;
}

.testimonial-placeholder i {
    font-size: 2rem;
    color: #00b359;
    margin-bottom: 1rem;
}

.testimonial-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial-placeholder small {
    color: #888;
}

.instagram-link {
    text-align: center;
    font-size: 1.2rem;
}

.instagram-link a {
    color: #00b359;
    text-decoration: none;
    font-weight: 600;
}

.instagram-link a:hover {
    text-decoration: underline;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    color: #fff;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #00b359, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #00b359;
    box-shadow: 0 10px 30px rgba(0, 179, 89, 0.2);
}

.price {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00b359, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.benefits-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #ccc;
}

.benefits-list i {
    color: #00b359;
    margin-right: 1rem;
}

.delivery-info {
    background: rgba(0, 179, 89, 0.1);
    padding: 1rem;
    border-radius: 6px;
    margin: 2rem 0;
    border: 1px solid #00b359;
}

.guarantee {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 179, 89, 0.05);
    border-radius: 6px;
    border: 1px solid #333;
}

.guarantee p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

/* FAQ Section */
.faq {
    background: #1a1a1a;
    padding: 80px 0;
    color: #fff;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #00b359, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.faq-item {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #333;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 179, 89, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #fff;
}

.faq-question i {
    color: #00b359;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #ccc;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 2rem 0;
    text-align: center;
    color: #888;
    border-top: 1px solid #333;
}

/* ===== FOOTER DISCLAIMER ===== */
.disclaimer {
    margin-top: 20px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 6px;
    border: 1px solid #333;
}

.disclaimer p {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    margin: 0;
    text-align: justify;
}

/* ===== OTIMIZAÇÕES MOBILE ===== */

/* Tablets (768px e abaixo) */
@media (max-width: 768px) {
    /* Layout geral */
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 25px 0;
    }
    
    /* Header */
    .nav {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0 20px;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    /* Stats responsivo */
    .stats {
        flex-direction: column;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    /* Video Section */
    .video-section {
        max-width: 100%;
        margin: 2rem 0;
    }
    
    .video-embed {
        min-height: auto !important;
    }
    
    .video-embed iframe,
    .video-embed wistia-player {
        min-height: auto !important;
        height: auto !important;
        aspect-ratio: 16/9;
    }
    
    .video-placeholder-large {
        min-height: 350px;
    }
    
    /* Highlight Box */
    .highlight-box {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .highlight-box h3 {
        font-size: 1.4rem;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .nico-photo {
        max-width: 300px;
        width: 100%;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    /* Testimonials Slider */
    .results {
        padding: 30px 0;
    }
    
    .testimonials-track {
        width: calc(285px * 8); /* 8 slides de 285px cada (270px + 15px margin) */
    }
    
    .testimonial-slide {
        flex: 0 0 270px;
        margin-right: 15px;
        padding: 0;
    }
    
    .testimonials-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .testimonials-nav.prev {
        left: 10px;
    }
    
    .testimonials-nav.next {
        right: 10px;
    }
    
    /* Pricing */
    .pricing {
        padding: 30px 0;
    }
    
    .pricing-card {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    /* FAQ */
    .faq-item {
        margin-bottom: 1rem;
    }
    
    /* Efeitos reduzidos */
    .particle {
        opacity: 0.2;
        width: 2px;
        height: 2px;
    }
    
    .matrix-rain {
        opacity: 0.03;
    }
    
    .particle:nth-child(n+26) {
        display: none;
    }
}

/* Smartphones (480px e abaixo) */
@media (max-width: 480px) {
    /* Layout geral */
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 15px 0;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    /* Títulos gerais */
    h2 {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    /* Stats */
    .stats {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Video Section */
    .video-section {
        margin: 1.5rem 0;
    }
    
    .video-container-large {
        border-width: 2px;
    }
    
    .video-embed {
        min-height: auto !important;
    }
    
    .video-embed iframe,
    .video-embed wistia-player {
        min-height: auto !important;
        height: auto !important;
        aspect-ratio: 16/9;
    }
    
    .video-placeholder-large {
        min-height: 250px;
    }
    
    .video-placeholder-large i {
        font-size: 3.5rem;
    }
    
    .video-placeholder-large p {
        font-size: 1.2rem;
    }
    
    /* Highlight Box */
    .highlight-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .highlight-box h3 {
        font-size: 1.3rem;
    }
    
    .highlight-box p {
        font-size: 1rem;
    }
    
    /* About Section */
    .nico-photo {
        max-width: 90%;
        width: 90%;
        margin: 0 auto;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.2rem;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    /* Method Section */
    .method-steps {
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .step-number {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    /* Results Section */
    .results {
        padding: 20px 0;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Testimonials Slider */
    .testimonials-track {
        width: calc(295px * 8); /* 8 slides de 295px cada (280px + 15px margin) */
    }
    
    .testimonial-slide {
        flex: 0 0 280px;
        margin-right: 15px;
        padding: 0;
    }
    
    .testimonial-image {
        width: 100%;
        height: auto;
    }
    
    .testimonials-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .testimonials-nav.prev {
        left: 5px;
    }
    
    .testimonials-nav.next {
        right: 5px;
    }
    
    /* Pricing */
    .pricing {
        padding: 20px 0;
    }
    
    .pricing-card {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .price-period {
        font-size: 1rem;
    }
    
    /* FAQ */
    .faq-item {
        margin-bottom: 0.8rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    /* Botões */
    .btn-primary {
        padding: 1rem 1.8rem;
        font-size: 1.1rem;
    }
    
    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
    }
    
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-content {
        text-align: center;
        padding: 2rem 0;
    }
    
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Efeitos mínimos */
    .particle {
        opacity: 0.1;
        width: 1px;
        height: 1px;
    }
    
    .matrix-rain {
        opacity: 0.02;
    }
    
    .particle:nth-child(n+16) {
        display: none;
    }
    
    /* Scroll progress */
    .scroll-progress {
        height: 3px;
    }
    
    /* CTA Section */
    .cta-text {
        font-size: 1.1rem;
        margin: 1rem 0;
    }
    
    /* Utility classes mobile */
    .text-center-mobile {
        text-align: center;
    }
    
    .hidden-mobile {
        display: none;
    }
}