/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6a0dad;
    --primary-dark: #4b088a;
    --secondary: #00d4ff;
    --accent: #f1c40f;
    --dark: #0a0c1a;
    --light: #b3b3cc;
    --gray: #666;
    --success: #28a745;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: var(--dark);
    overflow-x: hidden;
    padding-top: 80px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 12, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 15px 0;
    transition: background 0.3s;
}

.header.scrolled {
    background: rgba(10, 12, 26, 0.98);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(90deg, #00d4ff, #6a0dad, #f1c40f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 5px;
    text-transform: uppercase;
    filter: drop-shadow(0 0 10px rgba(106, 13, 173, 0.7));
    transition: transform 0.3s;
}

.logo h1:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--accent);
}

.cta-button {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.5);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--light);
    cursor: pointer;
}

/* ===== HERO STREAMING COM CARROSSEL ===== */
.hero-streaming {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.particles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    transform: scale(1.1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 12, 26, 0.9) 0%,
        rgba(10, 12, 26, 0.7) 50%,
        rgba(10, 12, 26, 0.3) 100%
    );
    display: flex;
    align-items: center;
}

.banner-content {
    max-width: 600px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-watch {
    background: var(--accent);
    color: var(--dark);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-watch:hover {
    background: #ffcd00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4);
}

.btn-info {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.btn-info:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Controles do Carrossel */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-carousel:hover .carousel-controls {
    opacity: 1;
}

.carousel-prev,
.carousel-next {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: var(--accent);
    transform: scale(1.1);
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--accent);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--accent);
    border-color: white;
    transform: scale(1.3);
}

/* ===== SEÇÃO DE APPS ===== */
.apps {
    padding: 80px 0;
    background: #0b0b0b;
    text-align: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #fff;
    text-transform: uppercase;
}

.apps .section-subtitle {
    color: #bbb;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    justify-content: center;
    align-items: stretch;
}

.app-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
    border: 1px solid rgba(106, 13, 173, 0.2);
}

.app-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.5);
}

.app-card.highlight {
    animation: appFlash 1.5s ease-in-out;
    box-shadow: 0 0 25px rgba(183, 73, 255, 0.7);
    transform: scale(1.03);
}

.app-icon {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 20%;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.app-card:hover .app-icon {
    transform: scale(1.1);
}

.app-card h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #fff;
}

.app-card p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 20px;
    min-height: 45px;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #ffcd00;
}

.app-card a.btn-primary {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(90deg, #6a0dad, #8b48d7);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-card a.btn-primary:hover {
    background: linear-gradient(90deg, #8b48d7, #b97aff);
    box-shadow: 0 0 20px rgba(137, 43, 226, 0.5);
    transform: translateY(-2px);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    background: rgba(26, 31, 58, 0.9);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(106, 13, 173, 0.2);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: var(--light);
}

.feature-card .platform-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    color: #b3b3cc;
    font-size: 1.5rem;
}

.feature-card .platform-icons i:hover {
    color: #f1c40f;
    transform: scale(1.2);
    transition: color 0.3s, transform 0.3s;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 80px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: rgba(26, 31, 58, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(106, 13, 173, 0.3);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
}

.popular-badge {
    background: var(--accent);
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
}

.plan-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.plan-features {
    padding: 30px;
    list-style: none;
}

.plan-features li {
    margin-bottom: 15px;
    color: var(--light);
}

.btn-pricing {
    display: block;
    margin: 0 30px 30px;
    padding: 15px;
    text-align: center;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
}

.payment-methods {
    text-align: center;
    margin-top: 40px;
}

.payment-methods p {
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--light);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    color: var(--gray);
}

.payment-icons .pix-preferred {
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
}

/* ===== HOW IT WORKS SECTION ===== */
.howto {
    padding: 80px 0;
    background: rgba(26, 31, 58, 0.9);
}

.signup-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.flow-step {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(106, 13, 173, 0.2);
    transition: transform 0.3s;
}

.flow-step:hover {
    transform: translateY(-10px);
}

.flow-step i {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 15px;
}

.flow-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.flow-step p {
    color: #b3b3cc;
    margin-bottom: 20px;
}

.btn-secondary {
    background: #6a0dad;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #4b088a;
    transform: translateY(-3px);
}

.step-image {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding-top: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(106, 13, 173, 0.2);
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    color: #b3b3cc;
    margin-bottom: 15px;
}

.testimonial-card span {
    display: block;
    font-weight: 600;
    color: #fff;
    opacity: 0.8;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    text-align: center;
}

.contact-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 16px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 20px 0;
    text-align: center;
}

.footer p {
    opacity: 0.7;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes appFlash {
    0% { box-shadow: 0 0 0 rgba(183,73,255,0); }
    25% { box-shadow: 0 0 20px rgba(183,73,255,0.8); }
    50% { box-shadow: 0 0 30px rgba(183,73,255,1); transform: scale(1.05); }
    75% { box-shadow: 0 0 15px rgba(183,73,255,0.5); }
    100% { box-shadow: 0 0 0 rgba(183,73,255,0); transform: scale(1.0); }
}

.app-card:nth-child(1) { animation-delay: 0.2s; }
.app-card:nth-child(2) { animation-delay: 0.4s; }

/* ===== MENU MOBILE ===== */
.nav.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav.active a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
}

.nav.active a:last-child {
    border-bottom: none;
}

.nav.active a.cta-button {
    background: #6a0dad;
    margin: 1rem 2rem;
    border-radius: 5px;
    width: calc(100% - 4rem);
}

.nav.active a:hover {
    background: rgba(106, 13, 173, 0.3);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header .container {
        position: relative;
    }
    
    .hero-streaming {
        height: 60vh;
        min-height: 500px;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .carousel-controls {
        display: none;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-streaming {
        height: 70vh;
        min-height: 600px;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
    
    .nav {
        display: flex !important;
    }
}

/* ===== BOTÕES DO CARROSSEL CORRIGIDOS ===== */
.banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-watch, .btn-info {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

.btn-watch {
    background: var(--accent);
    color: var(--dark);
}

.btn-watch:hover {
    background: #ffcd00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4);
}

.btn-info {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-info:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .banner-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-watch, .btn-info {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}