@import url('https://fonts.googleapis.com');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #000;
    color: #fff;
    scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links a {
    color: #888;
    text-decoration: none;
    margin: 0 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-btn-iptv {
    color: #25d366 !important;
}

/* CONTAINER GERAL (ELIMINANDO ESPAÇOS) */
.section-container {
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* CARD BISFLIX */
.card-bisflix {
    width: 100%;
    max-width: 850px;
    background: linear-gradient(135deg, #111 0%, #000 100%);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 1);
}

.card-bisflix h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.card-bisflix h1 span {
    color: #e50914;
    text-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
}

.card-bisflix p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 25px;
}

/* BOTÃO BISFLIX */
.btn-cta-bisflix {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #e50914;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.4);
}

.btn-cta-bisflix:hover {
    transform: scale(1.05);
    background: #ff0a16;
}

/* CARD IPTV (NEON) */
.card-iptv {
    width: 100%;
    max-width: 850px;
    background: #080808;
    border: 2px solid #25d366;
    padding: 35px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.2);
}

.badge-vip {
    background: #25d366;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 900;
    margin-bottom: 15px;
    display: inline-block;
}

.card-iptv h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #fff;
}

.btn-cta-iptv {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(90deg, #128c7e, #25d366);
    padding: 22px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-bottom: 4px solid #075e54;
}

/* GRID DE BOTÕES GRATUITOS */
.grid-botoes {
    width: 100%;
    max-width: 850px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.title-label {
    font-size: 11px;
    color: #e50914;
    margin-bottom: 15px;
    text-align: center;4
    letter-spacing: 2px;
}

.btn-free {
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    padding: 20px 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    border: 1px solid #222;
    transition: 0.3s;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn-free:hover {
    transform: translateY(-5px);
    border-color: #fff;
    background: #252525;
}

/* CORES DOS BOTÕES AO PASSAR O MOUSE */
.spcine:hover {
    color: #ffcc00;
    border-color: #ffcc00;
}

.netmovies:hover {
    color: #e50914;
    border-color: #e50914;
}

.pluto:hover {
    color: #005cff;
    border-color: #005cff;
}

/* FOOTER */
.footer-legal {
    padding: 40px;
    text-align: center;
    font-size: 10px;
    color: #333;
}

/* CELULAR */
@media (max-width: 600px) {
    .grid-botoes {
        grid-template-columns: 1fr 1fr;
    }

    .card-bisflix h1 {
        font-size: 2.5rem;
    }

    .card-iptv h2 {
        font-size: 1.3rem;
    }
}
/* MANTENHA O CSS ANTERIOR E ADICIONE ESTES ABAIXO */

.stremio:hover { color: #7b59d0; border-color: #7b59d0; box-shadow: 0 0 15px rgba(123, 89, 208, 0.3); }

/* ESTILO DO MODAL (POP-UP) */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.9); z-index: 2000; align-items: center; justify-content: center;
            backdrop-filter: blur(5px);
            }
            .modal-content {
                background: #111; padding: 30px; border-radius: 20px; border: 1px solid #333;
                    text-align: center; max-width: 400px; width: 90%; animation: slideIn 0.3s ease;
                    }
                    .modal-content h3 { font-size: 1.5rem; margin-bottom: 10px; }
                    .modal-content p { font-size: 0.9rem; color: #aaa; margin-bottom: 25px; line-height: 1.5; }

                    .modal-actions { display: flex; gap: 10px; justify-content: center; }

                    .btn-modal {
                        padding: 12px 30px; border-radius: 8px; font-weight: 900; cursor: pointer;
                            text-decoration: none; border: none; font-size: 1rem; flex: 1; transition: 0.2s;
                            }
                            .sim { background: #25d366; color: #000; }
                            .nao { background: #e50914; color: #fff; }

                            .btn-modal:hover { transform: scale(1.05); filter: brightness(1.2); }

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