:root {
    --black-pure: #000000;
    --black-card: #121212;
    --orange-main: #ff6600;
    --orange-hover: #e65c00;
    --white: #ffffff;
    --gray-text: #b0b0b0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--black-pure); color: var(--white); font-family: 'Segoe UI', Roboto, sans-serif; overflow-x: hidden; }

/* HEADER DARK */
.header { position: fixed; top: 0; width: 100%; background: rgba(0,0,0,0.95); padding: 12px 0; z-index: 1000; border-bottom: 2px solid var(--orange-main); }
.header-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.logo-img { height: 45px; }

/* BANNER & SLIDER */
.banner { position: relative; width: 100%; height: 400px; margin-top: 70px; overflow: hidden; }
.slide-img { position: absolute; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease-in-out; }
.slide-img.active { opacity: 0.6; } /* Escurece um pouco a imagem do fundo */

.banner-overlay {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    text-align: center; z-index: 10; width: 90%;
}
.banner-overlay h2 { font-size: 32px; color: var(--orange-main); text-shadow: 2px 2px 10px #000; margin-bottom: 15px; }

/* MURAL DE ATRAÇÕES COM BLUR */
.grid-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; padding: 40px 20px; max-width: 1200px; margin: 0 auto; }

.card { background: var(--black-card); border-radius: 12px; overflow: hidden; border: 1px solid #222; transition: 0.3s; position: relative; }
.card:hover { transform: translateY(-5px); border-color: var(--orange-main); }

/* O EFEITO DE CENSURA */
.card-image { position: relative; width: 100%; height: 350px; overflow: hidden; background: #000; }
.card-image img { 
    width: 100%; height: 100%; object-fit: cover; 
    filter: blur(12px); /* DESFOQUE FORTE */
    transform: scale(1.1); transition: 0.5s; 
}

/* Ícone de Cadeado sobre o Blur */
.card-image::after {
    content: '\f023'; font-family: 'Font Awesome 5 Free'; font-weight: 900;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 50px; color: rgba(255,255,255,0.7); text-shadow: 0 0 20px #000; z-index: 5;
}

.card-body { padding: 20px; text-align: center; }
.card-body h3 { font-size: 18px; margin-bottom: 10px; color: var(--white); }
.card-body p { font-size: 14px; color: var(--gray-text); margin-bottom: 20px; line-height: 1.4; }

/* BOTÃO PULSANTE */
.btn {
    display: block; background: linear-gradient(90deg, #ff6600, #ff9900);
    color: white; font-weight: bold; text-decoration: none; padding: 12px;
    border-radius: 8px; text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(255, 102, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

/* FOOTER */
.footer { padding: 40px; text-align: center; background: #080808; border-top: 1px solid #222; margin-top: 50px; }
.logo-footer { height: 40px; opacity: 0.6; margin-bottom: 15px; }

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .banner { height: 250px; }
    .banner-overlay h2 { font-size: 22px; }
}
/* AJUSTES ESPECÍFICOS PARA PÁGINA DE PLANOS DARK */
.planos-page {
    background-color: var(--black-pure);
}

.pricing-header h1 {
    color: var(--orange-main);
    font-weight: 900;
}

.timer-box {
    background: #ff0000;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 20px;
}

.mini-benefits {
    text-align: left;
    margin: 15px 0;
    font-size: 13px;
    color: var(--gray-text);
}

.mini-benefits span {
    display: block;
    margin-bottom: 5px;
}

.mini-benefits i {
    color: var(--orange-main);
    margin-right: 5px;
}

.btn-back {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    border: 1px solid #333;
    padding: 5px 15px;
    border-radius: 20px;
}

.security-footer {
    margin-top: 50px;
    text-align: center;
    color: #444;
}

.payment-methods {
    font-size: 30px;
    gap: 15px;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
/* AJUSTE DO CONTAINER DE PLANOS */
.container-planos {
    max-width: 1100px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h1 {
    color: var(--orange-main);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* GRID LADO A LADO */
.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: nowrap;
}

.price-card {
    flex: 1;
    background: #111;
    border: 1px solid #222;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    text-align: center;
    position: relative;
}

.price-card.recommended {
    border: 2px solid var(--orange-main);
    background: #161616;
    transform: scale(1.05);
    z-index: 2;
}

/* IMAGENS DOS PLANOS */
.card-img-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.plan-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* INFO DE PREÇO */
.card-info h3 {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.badge-recommended {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-main);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
}

/* BOTÃO DE PLANO */
.btn-plan {
    display: block;
    background: linear-gradient(90deg, #ff6600, #ff9900);
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: auto;
    transition: 0.3s;
}

.btn-plan.pulse {
    animation: pulse-button 2s infinite;
}

/* RESPONSIVIDADE (MOBILE) */
@media (max-width: 850px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    .price-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }
    .price-card.recommended {
        transform: scale(1);
    }
}
/* EFEITO DE CENSURA (BLUR) EM TODOS OS CARDS */
.card-image {
    position: relative;
    overflow: hidden;
    background: #000;
    height: 300px; /* Ajuste a altura conforme as suas imagens */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px); /* Desfoque aplicado em todas */
    transform: scale(1.1); /* Evita bordas brancas no blur */
    transition: 0.5s;
}

/* CADEADO CENTRALIZADO */
.card-image::after {
    content: '\f023'; /* Ícone do cadeado FontAwesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 20px rgba(0,0,0,0.9);
    z-index: 10;
}

/* BOTÃO DE DESBLOQUEIO PULSANTE */
.card-body .btn {
    display: block;
    background: linear-gradient(90deg, #ff6600, #ff9900);
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); box-shadow: 0 0 15px rgba(255, 102, 0, 0.6); }
    100% { transform: scale(1); }
}
/* GRID - Ajustado para 2 colunas no mobile e 4 no PC */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Padrão mobile: 2 colunas */
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* PC: 4 colunas */
@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

/* CARD MENOR */
.card {
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

/* ALTURA DA IMAGEM AJUSTADA */
.card-image {
    position: relative;
    width: 100%;
    height: 180px; /* Altura reduzida para não ficar gigante */
    background: #000;
    overflow: hidden;
}

@media (min-width: 768px) {
    .card-image {
        height: 250px; /* Altura um pouco maior no PC */
    }
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px);
    transform: scale(1.1);
}

/* CADEADO MENOR */
.card-image::after {
    content: '\f023';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px; /* Cadeado menor */
    color: rgba(255, 255, 255, 0.7);
}

/* TEXTOS DO CARD MENORES */
.card-body {
    padding: 12px;
    text-align: center;
}

.card-body h3 {
    font-size: 14px; /* Título menor */
    margin-bottom: 8px;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-body p {
    display: none; /* Esconde a descrição no mobile para economizar espaço */
}

@media (min-width: 768px) {
    .card-body p {
        display: block; /* Mostra no PC */
        font-size: 12px;
        color: #888;
        margin-bottom: 15px;
    }
    .card-body h3 {
        font-size: 16px;
        white-space: normal;
    }
}

/* BOTÃO COMPACTO */
.btn {
    display: block;
    background: linear-gradient(90deg, #ff6600, #ff9900);
    color: white;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    padding: 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
/* =========================================
   VARIÁVEIS E CONFIGURAÇÕES GERAIS
   ========================================= */
:root {
    --black-pure: #000000;
    --black-card: #121212;
    --orange-main: #ff6600;
    --orange-hover: #e65c00;
    --white: #ffffff;
    --gray-text: #b0b0b0;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    background: var(--black-pure); 
    color: var(--white); 
    font-family: 'Segoe UI', Roboto, sans-serif; 
    overflow-x: hidden; 
}

/* =========================================
   HEADER (FIXO)
   ========================================= */
.header { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    background: rgba(0,0,0,0.95); 
    padding: 12px 0; 
    z-index: 1000; 
    border-bottom: 2px solid var(--orange-main); 
}

.header-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 20px; 
}

.logo-img { height: 45px; }

.nav-menu { display: flex; align-items: center; gap: 15px; }

.tab-link { 
    background: none; 
    border: none; 
    color: var(--gray-text); 
    cursor: pointer; 
    font-weight: bold; 
    text-transform: uppercase;
}

.tab-link.active { color: var(--orange-main); }

.btn-top { 
    background: var(--orange-main); 
    color: white; 
    padding: 8px 15px; 
    border-radius: 5px; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 14px;
}

/* =========================================
   BANNER / SLIDER (CORRIGIDO)
   ========================================= */
.slider { 
    position: relative; 
    width: 100%; 
    height: 300px; 
    margin-top: 71px; /* Evita que o banner fique por baixo do header */
    overflow: hidden; 
    z-index: 1;
}

@media (min-width: 768px) {
    .slider { height: 500px; }
}

.slide-img { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
}

.slide-img.active { opacity: 1; }

/* =========================================
   GRID DE CONTEÚDO (INDEX)
   ========================================= */
.container { 
    max-width: 1200px; 
    margin: 40px auto; 
    padding: 0 15px; 
}

.section-title { 
    text-align: center; 
    margin-bottom: 30px; 
    font-size: 1.5rem; 
    color: var(--orange-main); 
}

.grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); /* 2 Colunas no Mobile */
    gap: 15px; 
}

@media (min-width: 768px) {
    .grid { grid-template-columns: repeat(4, 1fr); gap: 25px; }
}

/* CARDS COM BLUR SUAVE */
.card { 
    background: var(--black-card); 
    border-radius: 10px; 
    overflow: hidden; 
    border: 1px solid #222; 
    display: flex; 
    flex-direction: column; 
}

.card-image { 
    position: relative; 
    height: 180px; 
    background: #000; 
    overflow: hidden; 
}

@media (min-width: 768px) {
    .card-image { height: 260px; }
}

.card-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    filter: blur(6px); /* Blur reduzido para 6px */
    transform: scale(1.05); 
}

/* ÍCONE DE CADEADO NO CARD */
.card-image::after {
    content: '\f023';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: rgba(255,255,255,0.6);
}

.card-body { padding: 12px; text-align: center; }

.card-body h3 { 
    font-size: 14px; 
    margin-bottom: 8px; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}

.card-body p { display: none; } /* Esconde descrição no mobile */

@media (min-width: 768px) {
    .card-body h3 { white-space: normal; font-size: 16px; }
    .card-body p { display: block; font-size: 12px; color: var(--gray-text); margin-bottom: 15px; }
}

.btn { 
    display: block; 
    background: linear-gradient(90deg, #ff6600, #ff9900); 
    color: white; 
    padding: 10px; 
    border-radius: 5px; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 12px;
}

/* =========================================
   PÁGINA DE PLANOS (DARK)
   ========================================= */
.container-planos { 
    max-width: 1100px; 
    margin: 100px auto 50px; 
    padding: 0 20px; 
}

.timer-box { 
    background: #ff0000; 
    color: #fff; 
    text-align: center; 
    padding: 10px; 
    border-radius: 5px; 
    font-weight: bold; 
    margin-bottom: 30px; 
}

.pricing-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
}

.price-card { 
    background: var(--black-card); 
    border: 1px solid #333; 
    border-radius: 15px; 
    padding: 25px; 
    width: 100%; 
    max-width: 320px; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
}

.price-card.recommended { 
    border: 2px solid var(--orange-main); 
    transform: scale(1.05); 
    position: relative; 
}

.badge-recommended {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-main);
    color: black;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.benefits-list { list-style: none; margin: 20px 0; text-align: left; }
.benefits-list li { font-size: 13px; margin-bottom: 10px; color: var(--gray-text); }
.benefits-list li i { color: var(--orange-main); margin-right: 8px; }

.price { font-size: 24px; font-weight: 900; margin: 15px 0; }

.btn-plan { 
    background: var(--orange-main); 
    color: white; 
    text-decoration: none; 
    padding: 15px; 
    border-radius: 8px; 
    font-weight: bold; 
    margin-top: auto;
}

/* =========================================
   FOOTER E ANIMAÇÕES
   ========================================= */
.footer { 
    padding: 40px; 
    text-align: center; 
    background: #080808; 
    border-top: 1px solid #222; 
    margin-top: 50px; 
}

.logo-footer { height: 40px; opacity: 0.5; margin-bottom: 10px; }

.pulse { animation: pulse-shadow 2s infinite; }
@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 102, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}