/* ==========================================================================
   CSS CUSTOMIZADO - TEMA FUTURISTA (ROXO, PRETO E BRANCO)
   ========================================================================== */

   :root {
    --bg-color: #050505;
    --bg-secondary: #0f0a17;
    --bg-card: #150f21;
    --bg-card-hover: #1e1530;
    
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    
    --primary-purple: #9d00ff;
    --secondary-purple: #6a0dad;
    --primary-glow: rgba(157, 0, 255, 0.4);
    
    --accent-white: #f5f5f5;
    --border-color: rgba(157, 0, 255, 0.2);
    
    --border-radius: 16px;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 0%, #1a0b2e 0%, var(--bg-color) 60%);
    background-attachment: fixed;
}

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-purple);
}

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

/* Utils */
.glow-text {
    text-shadow: 0 0 10px var(--primary-glow), 0 0 20px var(--primary-glow);
}

.gradient-text {
    background: linear-gradient(90deg, #e0a3ff, #9d00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: #fff;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 25px rgba(157, 0, 255, 0.6);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid var(--primary-purple);
    transition: all var(--transition-speed) ease;
}

.btn-outline:hover {
    background: var(--primary-purple);
    box-shadow: 0 0 15px var(--primary-glow);
}

.full-width {
    width: 100%;
}

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

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    color: var(--primary-purple);
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.pix-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pix-info i {
    color: #00b894; /* Verde para remeter ao PIX */
    width: 16px;
    height: 16px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-purple);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-purple);
    bottom: 100px;
    left: -50px;
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 30px rgba(157, 0, 255, 0.1);
    background: var(--bg-card-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(157, 0, 255, 0.1);
    color: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing */
.pricing {
    padding: 100px 0;
}

.pricing-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    margin: 0 auto 50px;
    background: var(--bg-card);
    border-radius: 40px;
    padding: 6px;
    width: fit-content;
    border: 1px solid var(--border-color);
}

.toggle-btn {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 12px 28px;
    border-radius: 35px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.toggle-btn:hover {
    color: var(--text-main);
}

.toggle-btn.active {
    background: #ffffff;
    color: #050505;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

@media (max-width: 600px) {
    .billing-toggle {
        flex-wrap: wrap;
        border-radius: 20px;
    }
    .toggle-btn {
        width: 50%;
        text-align: center;
    }
}

.price-card {
    background: #ffffff;
    color: #050505;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
    max-width: 450px; /* Limita a largura para ficar bonito no centro */
}

.price-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(157, 0, 255, 0.2);
}

.price-card.popular {
    border: 3px solid var(--primary-purple);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(157, 0, 255, 0.25);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-purple);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header {
    margin-bottom: 20px;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #050505;
}

.plan-divider {
    height: 1px;
    background: #e0e0e0;
    margin-bottom: 25px;
    width: 100%;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1; /* Faz o conteúdo do meio expandir, empurrando o preço pra baixo */
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #333333;
    font-size: 0.95rem;
    font-weight: 600;
}

.plan-features i {
    color: #050505;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.plan-footer {
    margin-top: auto;
    text-align: center;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #050505;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.plan-price .cents {
    font-size: 1.2rem;
}

.plan-price .period {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

/* Video Section */
.video-section {
    padding: 60px 0;
    text-align: center;
}
.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(157, 0, 255, 0.2);
    aspect-ratio: 16/9;
}
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: transparent;
    overflow: hidden;
}
.gallery-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
    padding-left: 20px;
}
.gallery-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
    padding-left: 20px;
}
.movies-grid {
    display: flex;
    gap: 15px;
    padding: 10px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.movies-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
.movie-card {
    flex: 0 0 calc(25% - 15px);
    max-width: 200px;
    min-width: 130px;
    scroll-snap-align: start;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform var(--transition-speed);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: transparent;
    cursor: pointer;
}
.movie-card:hover {
    transform: scale(1.05);
    z-index: 2;
}
.movie-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}
.movie-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 40px 10px 15px;
    opacity: 0;
    transition: opacity var(--transition-speed);
}
.movie-card:hover .movie-info {
    opacity: 1;
}
.movie-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .movie-card {
        flex: 0 0 calc(38% - 15px);
    }
    .movie-info {
        opacity: 1;
    }
}
@media (max-width: 480px) {
    .movie-card {
        flex: 0 0 calc(45% - 10px);
    }
    .gallery-title {
        font-size: 1.5rem;
    }
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-speed);
}

.faq-question:hover {
    color: var(--primary-purple);
}

.faq-icon {
    transition: transform var(--transition-speed);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-purple);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Suficiente para o texto */
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-text {
    color: var(--text-muted);
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-purple);
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    margin-top: 20px;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Responsividade Aprimorada */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .price-card.popular {
        transform: scale(1);
    }
    
    .nav-links {
        display: none; 
    }

    .btn-primary {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px;
        border-radius: 50%;
    }

    .whatsapp-text {
        display: none; /* Oculta o texto no mobile, mostra só o ícone */
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .plan-price {
        font-size: 2.8rem;
    }

    .features {
        padding: 60px 0;
    }

    .pricing {
        padding: 60px 0;
    }

    .faq {
        padding: 60px 0;
    }

    .logo-img {
        height: 55px;
    }
}
