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

body {
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

html { scroll-behavior: smooth; }

/* Cores */
:root {
    --vermelho: #e50914; 
    --vermelho-escuro: #b20710;
    --verde-zap: #00a884;
    --cinza-card: #0f0f0f;
    --borda-suave: #333;
}

/* --- BARRA DE URGÊNCIA (NOVO) --- */
.top-bar-offer {
    background-color: #ff0000; /* Vermelho bem vivo */
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000; /* Fica acima do header */
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

/* --- HEADER --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    width: 100%;
    position: fixed;
    /* Empurrei o header para baixo por causa da barra vermelha */
    top: 38px; 
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #1a1a1a;
}

.logo-img { height: 45px; width: auto; display: block; }

nav ul { display: flex; list-style: none; gap: 30px; }
nav a { text-decoration: none; color: #ccc; font-weight: 500; font-size: 0.9rem; transition: 0.3s; }
nav a:hover { color: #fff; }

.btn-header-red {
    background-color: var(--vermelho);
    color: white;
    padding: 8px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}
.btn-header-red:hover { background-color: var(--vermelho-escuro); }

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    padding-top: 120px; /* Aumentei por causa da barra extra */
}

.hero-text { max-width: 45%; }

.tag-oferta {
    background-color: #222;
    color: var(--vermelho);
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

p.subtitulo {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-buttons { display: flex; gap: 15px; }

.btn-big-red, .btn-big-outline {
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-big-red { background-color: var(--vermelho); color: white; border: none; }
.btn-big-red:hover { background-color: var(--vermelho-escuro); }

.btn-big-outline { background-color: transparent; color: white; border: 2px solid #333; }
.btn-big-outline:hover { border-color: white; }

.hero-media {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.video-destaque {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 1px solid #222;
}

/* --- PRICING --- */
.pricing-section { padding: 80px 20px; text-align: center; background: #000; }
.section-title { font-size: 2.5rem; margin-bottom: 20px; font-weight: 700; letter-spacing: -1px; }

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--cinza-card);
    border: 1px solid var(--borda-suave);
    border-radius: 12px;
    padding: 40px 30px;
    width: 300px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.pricing-card.destaque {
    border: 2px solid var(--vermelho);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.15);
}

.tag-mais-vendido {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vermelho);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
}

.plano-nome { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.plano-preco { font-size: 2.2rem; font-weight: 700; margin-bottom: 25px; letter-spacing: -1px; }
.plano-preco span { font-size: 1rem; color: #888; font-weight: 400; letter-spacing: normal; }

.lista-beneficios { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.lista-beneficios li { margin-bottom: 12px; font-size: 0.9rem; color: #ddd; display: flex; align-items: center; gap: 10px; }
.check-box { color: #16a34a; }

.btn-assinar-card {
    background: var(--vermelho);
    color: white;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    margin-top: auto;
    cursor: pointer;
}
.btn-assinar-card:hover { background: var(--vermelho-escuro); }

/* --- FAQ --- */
.faq-section { padding: 60px 20px; max-width: 800px; margin: 0 auto; }
.faq-container { display: flex; flex-direction: column; gap: 15px; }

.faq-item { background: var(--cinza-card); border: 1px solid var(--borda-suave); border-radius: 8px; overflow: hidden; }

summary {
    padding: 20px; cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
summary:hover { background: #151515; }
summary::after { content: '\f078'; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--vermelho); transition: 0.3s; }
details[open] summary::after { transform: rotate(180deg); }
.faq-resposta { padding: 0 20px 20px; color: #aaa; line-height: 1.5; border-top: 1px solid #222; }

/* --- FEEDBACKS (IMAGENS) --- */
.feedback-section { padding: 80px 0; border-top: 1px solid #111; overflow: hidden; }

.slide-track {
    display: flex;
    /* Ajuste da largura da pista baseado na qtd de imagens */
    width: calc(320px * 16); 
    animation: scroll 60s linear infinite; /* Mais lento para dar tempo de ler */
}
.slide-track:hover { animation-play-state: paused; }

.feedback-img {
    height: 350px; /* Altura fixa para todos os prints ficarem iguais */
    width: auto;   /* Largura ajusta sozinha */
    border-radius: 12px;
    margin: 0 15px;
    border: 1px solid #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-320px * 8)); } }

/* --- BUTTON FLOAT --- */
.floating-btn {
    position: fixed; bottom: 30px; right: 30px;
    background: var(--verde-zap); color: white;
    padding: 12px 30px; border-radius: 50px;
    font-weight: 700; text-decoration: none;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9998; transition: 0.2s;
    cursor: pointer;
}
.floating-btn:hover { transform: scale(1.05); }

/* --- MODAL --- */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8);
    z-index: 10000; justify-content: center; align-items: center;
    backdrop-filter: blur(5px);
}
.modal-box {
    background: #0f0f0f; padding: 30px; border-radius: 12px;
    border: 1px solid #333; width: 90%; max-width: 400px;
    text-align: center; position: relative;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.2);
}
.modal-close { position: absolute; top: 10px; right: 15px; color: #aaa; font-size: 1.5rem; cursor: pointer; }
.modal-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: white; }
.modal-desc { font-size: 0.9rem; color: #ccc; margin-bottom: 20px; }
.input-group { margin-bottom: 15px; text-align: left; }
.input-label { display: block; font-size: 0.85rem; color: #ddd; margin-bottom: 5px; font-weight: 600; }
.modal-input {
    width: 100%; padding: 12px; background: #1a1a1a;
    border: 1px solid #333; border-radius: 6px; color: white; font-size: 1rem; outline: none;
}
.modal-input:focus { border-color: #e50914; }
.btn-submit {
    width: 100%; background: #00a884; color: white; padding: 12px;
    border: none; border-radius: 6px; font-weight: 700; font-size: 1rem;
    cursor: pointer; margin-top: 10px; transition: 0.3s;
}
.btn-submit:hover { background: #008f6f; }

/* Mobile */
@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; padding: 140px 20px 50px; height: auto; }
    .hero-text { max-width: 100%; margin-bottom: 40px; }
    .hero-buttons { justify-content: center; }
    .hero-media { width: 100%; margin-top: 40px; }
    
    header { padding: 15px 20px; top: 40px; } /* Ajuste top por causa da barra */
    nav ul { display: none; }
    h1 { font-size: 2.2rem; }
    .pricing-card.destaque { transform: scale(1); }
    .feedback-img { height: 250px; } /* Prints menores no celular */
}

/* --- RODAPÉ (FOOTER) --- */
.main-footer {
    background-color: #0a0a0a; /* Um pouco mais claro que o fundo preto total */
    padding: 60px 20px 0 20px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Cria 3 colunas: a primeira maior, as outras duas iguais */
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    align-self: flex-start;
}

.footer-text {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Links do Rodapé */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--vermelho);
    transform: translateX(5px); /* Efeito de mover para o lado */
}

/* Ícones Sociais */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    background-color: #1a1a1a;
    color: #fff;
    width: 40px; height: 40px;
    border-radius: 50%; /* Redondo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    border: 1px solid #333;
    transition: 0.3s;
}

.social-icon:hover {
    background-color: var(--vermelho);
    border-color: var(--vermelho);
    transform: translateY(-3px);
}

/* Ícones de Pagamento */
.payment-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 2rem; /* Tamanho dos ícones */
    color: #ccc;
}

.payment-icons i:hover {
    color: white;
}

/* Selo de Segurança */
.security-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(0, 168, 132, 0.1); /* Fundo verde bem suave */
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #00a884;
}

.security-badge i {
    font-size: 2rem;
    color: #00a884; /* Cor do cadeado */
}

.security-badge span {
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.security-badge small {
    font-weight: 400;
    color: #aaa;
    font-size: 0.8rem;
}

/* Barra Inferior (Copyright) */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #1a1a1a;
    padding: 25px 0;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Responsividade do Rodapé */
@media (max-width: 900px) {
    .footer-content {
        /* Vira uma coluna só no celular */
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .footer-logo {
        align-self: center; /* Centraliza a logo */
    }

    .footer-text {
        max-width: 100%; /* Texto ocupa a largura total */
    }

    .footer-social, .payment-icons, .security-badge {
        justify-content: center; /* Centraliza os ícones */
    }
    
    .security-badge {
        text-align: left; /* Mantém o texto do selo alinhado */
        display: inline-flex; /* Para centralizar o bloco inteiro */
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
    }
}