/* ======================================================== */
/* INICIO - CONFIGURAÇÕES GERAIS E UX/UI ESPAÇAMENTOS       */
/* ======================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    padding-top: 80px; /* Respiro para o menu fixo */
}

p {
    
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    text-align: left;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Espaçamento padrão de UX para as seções respirarem */
.secao-espacamento {
    padding: 80px 0;
}
/* ======================================================== */
/* FIM - CONFIGURAÇÕES GERAIS E UX/UI ESPAÇAMENTOS          */
/* ======================================================== */


/* ======================================================== */
/* INICIO - MENU FIXO (UPPERCASE) E MOBILE (HAMBURGER)      */
/* ======================================================== */
.menu-fixo {
    position: fixed;
    text-align: left;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 124, 0, 0.3);
    transition: 0.3s;
}

.menu-fixo .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.menu-logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #007bff, #ff7c00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.menu-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Letras Maiúsculas no Menu (Uppercase) */
.menu-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase; 
    letter-spacing: 1px;
    transition: 0.3s;
}

.menu-links a:hover {
    color: #ff7c00;
}

/* Botão Hamburger (Escondido no PC, aparece no Celular) */
.menu-toggle {
    display: none;
    color: #ff7c00;
    font-size: 1.8rem;
    cursor: pointer;
}

.btn-login {
    background: transparent;
    border: 2px solid #007bff;
    padding: 10px 25px;
    border-radius: 0; /* Quina quadrada */
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.btn-login:hover {
    background: #007bff;
    color: #fff;
}
/* ======================================================== */
/* FIM - MENU FIXO E MOBILE                                 */
/* ======================================================== */


/* ======================================================== */
/* INICIO - HERO BANNER E BOTOES PRINCIPAIS                 */
/* ======================================================== */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 60px 0 80px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.8rem; /* Ajuste UX: Título mais imponente */
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #ff7c00;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background: #ff7c00;
    color: #000;
    font-weight: bold;
    padding: 16px 40px;
    border-radius: 0; /* Quina quadrada */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    transition: 0.3s;
    margin-bottom: 15px;
    border: 2px solid #ff7c00;
    box-shadow: 0 0 20px rgba(255, 124, 0, 0.3);
}

.btn-cta:hover {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.5);
}

.garantia {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
    background: rgba(0, 123, 255, 0.1);
    padding: 12px 20px;
    border-radius: 0; /* Quina quadrada */
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.garantia i {
    color: #ff7c00;
    font-size: 1.2rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 0; /* Quina quadrada */
    border: 3px solid transparent; /* Preparação para o Hover */
    transition: border-color 0.3s ease;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
}

.hero-image img:hover {
    border-color: #007bff; /* Borda aparece no hover */
}

/* Contagem Regressiva UX */
.contagem {
    background: rgba(255, 124, 0, 0.1);
    border: 1px solid #ff7c00;
    border-radius: 0; /* Quina quadrada */
    padding: 20px;
    margin: 40px 0;
    text-align: center;
}

.contagem p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
}

.timer {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff7c00;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.vagas {
    background: #111;
    padding: 10px 20px;
    border-radius: 0; /* Quina quadrada */
    font-size: 0.9rem;
    display: inline-block;
    border: 1px solid #333;
}
/* ======================================================== */
/* FIM - HERO BANNER E BOTOES PRINCIPAIS                    */
/* ======================================================== */


/* ======================================================== */
/* INICIO - CARDS, DEPOIMENTOS E BÔNUS (TODOS QUADRADOS)    */
/* ======================================================== */
.cards-section, .depoimentos, .bonus {
    padding: 80px 0; /* Respiro UX */
}

.cards-section h2, .depoimentos h2, .bonus h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.cards-grid, .grid-depoimentos, .grid-bonus {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card, .card-depoimento, .card-bonus {
    background: #0a0a0a;
    padding: 30px 25px;
    border-radius: 0; /* Quinas quadradas */
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover, .card-depoimento:hover, .card-bonus:hover {
    transform: translateY(-5px);
    border-color: #ff7c00; /* Borda no hover */
}

.card i, .card-bonus i {
    font-size: 2.5rem;
    color: #ff7c00;
    margin-bottom: 20px;
}

.depoimento-texto {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ccc;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.depoimento-autor img {
    width: 60px;
    height: 60px;
    border-radius: 0; /* Foto do autor quadrada */
    object-fit: cover;
    border: 2px solid #007bff;
}

.estrelas {
    color: #ffc107;
    margin-bottom: 15px;
}
/* ======================================================== */
/* FIM - CARDS, DEPOIMENTOS E BÔNUS                         */
/* ======================================================== */


/* ======================================================== */
/* INICIO - GALERIAS E FOTOS (HOVER NAS BORDAS)             */
/* ======================================================== */
.galeria, .ensaios {
    padding: 80px 0; /* Respiro UX */
}

.galeria h2, .ensaios h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.ensaios h2 span {
    color: #ff7c00;
}

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.grid-galeria .item {
    background: #080808;
    border-radius: 0; /* Mantém a quina quadrada limpa */
    overflow: hidden;
    text-align: center;
    border: 2px solid #111;
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column; /* Organiza a foto em cima e o texto embaixo */
}

.grid-galeria .item:hover {
    border-color: #ff7c00;
    transform: scale(1.02);
}

.grid-galeria img {
    width: 100%;
    aspect-ratio: 4 / 5; /* Força matematicamente a proporção vertical ideal */
    object-fit: cover; /* Preenche o espaço sem achatar ou esticar a imagem */
    object-position: center top; /* Foco no topo da imagem (preserva cabeças e rostos) */
    display: block;
}

.grid-galeria .item p {
    padding: 15px;
    font-weight: bold;
    border-top: 1px solid #111;
    background: #0a0a0a;
    margin: 0; /* Remove margens que possam deslocar o texto */
    text-align: center; /* Centraliza o título do card */
}

/* Ensaios */
.grid-ensaios {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.grid-ensaios img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 0; /* Quadrado */
    border: 3px solid #111;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.grid-ensaios img:hover {
    border-color: #007bff; /* Borda azul no hover dos ensaios */
    transform: scale(1.02);
}
/* ======================================================== */
/* FIM - GALERIAS E FOTOS                                   */
/* ======================================================== */


/* ======================================================== */
/* INICIO - CATEGORIAS                                      */
/* ======================================================== */
.categorias {
    padding: 80px 0;
    text-align: center;
}

.categorias h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.categorias h2 span {
    color: #ff7c00;
}

.categorias p {
    color: #888;
    margin-bottom: 40px;
}

.grid-categorias {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.card-categoria {
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 0; /* Quadrado */
    padding: 20px 15px;
    transition: 0.3s;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.card-categoria:hover {
    background: #111;
    border-color: #ff7c00; /* Borda laranja no hover */
    color: #ff7c00;
}
/* ======================================================== */
/* FIM - CATEGORIAS                                         */
/* ======================================================== */


/* ======================================================== */
/* INICIO - PLANOS DE PREÇOS E SOBRE                        */
/* ======================================================== */
.planos, .sobre {
    padding: 80px 0;
}

.planos h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.planos-container {
    display: flex;
    justify-content: center;
}

.plano-unico {
    max-width: 500px;
    width: 100%;
    background: #0a0a0a;
    border: 3px solid #007bff;
    border-radius: 0; /* Quadrado */
    padding: 50px 40px;
    transition: 0.3s;
}

.plano-unico:hover {
    border-color: #ff7c00;
    box-shadow: 0 0 30px rgba(255, 124, 0, 0.1);
}

.plano-nome {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: #007bff;
    text-transform: uppercase;
}

.preco-antigo {
    text-align: center;
    text-decoration: line-through;
    color: #888;
}

.preco-atual {
    text-align: center;
    font-size: 3.5rem;
    font-weight: bold;
    color: #ff7c00;
}

.preco-parcela {
    text-align: center;
    color: #ccc;
    margin-bottom: 30px;
}

.linha-divisoria {
    height: 1px;
    background: #333;
    margin: 30px 0;
}

.recursos {
    list-style: none;
    margin: 30px 0;
}

.recursos li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    color: #ddd;
}

.recursos li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-plano {
    display: block;
    width: 100%;
    background: #ff7c00;
    color: #000;
    text-align: center;
    padding: 20px;
    border-radius: 0; /* Quadrado */
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
    transition: 0.3s;
    border: 2px solid #ff7c00;
}

.btn-plano:hover {
    background: transparent;
    color: #ff7c00;
}

.selo-plano {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* Sobre */
.sobre-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.sobre-texto {
    flex: 1;
}

.sobre-texto h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sobre-texto h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 25px;
}

.metricas-sobre {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 30px;
}

.metrica-numero {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff7c00;
}

.sobre-imagem {
    flex: 1;
}

.sobre-imagem img {
    width: 100%;
    border-radius: 0; /* Quadrado */
    border: 3px solid transparent; /* Efeito hover */
    transition: border-color 0.3s ease;
}

.sobre-imagem img:hover {
    border-color: #ff7c00;
}
/* ======================================================== */
/* FIM - PLANOS DE PREÇOS E SOBRE                           */
/* ======================================================== */


/* ======================================================== */
/* INICIO - FAQ, RODAPÉ E EXTRAS                            */
/* ======================================================== */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #080808;
    border: 1px solid #222;
    border-radius: 0; /* Quadrado */
    margin-bottom: 15px;
}

.faq-pergunta {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-pergunta i {
    color: #ff7c00;
    transition: 0.3s;
}

.faq-resposta {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #ccc;
}

.faq-item.active .faq-resposta {
    max-height: 300px;
    padding: 0 25px 25px 25px;
}

.faq-item.active .faq-pergunta i {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-copyright {
    text-align: center;
    color: #555;
    font-size: 0.9rem;
    border-top: 1px solid #111;
    padding-top: 30px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 0; /* Botão flutuante quadrado */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background: #128C7E;
}

.whatsapp-float i {
    color: #fff;
    font-size: 32px;
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

.popup-content {
    background: #0a0a0a;
    border: 3px solid #ff7c00;
    border-radius: 0; /* Popup Quadrado */
    padding: 50px 40px;
    max-width: 450px;
    text-align: center;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}
/* ======================================================== */
/* FIM - FAQ, RODAPÉ E EXTRAS                               */
/* ======================================================== */


/* ======================================================== */
/* INICIO - REGRAS RESPONSIVAS (MOBILE & TABLET)            */
/* ======================================================== */
@media (max-width: 900px) {
    .grid-bonus { grid-template-columns: repeat(2, 1fr); }
    .grid-categorias { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; }
    
    /* Configuração do Menu Celular (Hamburger) */
    .menu-toggle {
        display: block; /* Mostra o ícone no celular */
    }
    
    .menu-links {
        display: none; /* Esconde o menu original */
        flex-direction: column;
        width: 100%;
        background: #050505;
        padding: 20px 0;
        gap: 15px;
        border-top: 1px solid #222;
        margin-top: 15px;
    }

    /* Classe ativada via JavaScript para abrir o menu */
    .menu-links.active {
        display: flex; 
    }

    .btn-login {
        display: block;
        text-align: center;
        margin-top: 10px;
    }

    body { padding-top: 100px; }
    .grid-depoimentos { grid-template-columns: 1fr; }
    .sobre-container { flex-direction: column; text-align: center; }
    .metricas-sobre { justify-content: center; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .timer { font-size: 2rem; letter-spacing: 2px; }
}

@media (max-width: 600px) {
    .grid-bonus { grid-template-columns: 1fr; }
    .grid-categorias { grid-template-columns: 1fr; }
}
/* ======================================================== */
/* FIM - REGRAS RESPONSIVAS                                 */
/* ======================================================== */