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

body { 
    background-color: #000000; 
    color: #ffffff; 
    font-family: sans-serif; 
}

header {
    background-color: #121212;
    padding: 15px 20px;
    border-bottom: 2px solid #D4AF37;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { 
    color: #D4AF37; 
    font-size: 24px; 
    font-weight: bold; 
    letter-spacing: 2px; 
}

/* --- DESIGN DO BOTÃO ANUNCIE AQUI (HEADER) --- */
.btn-anuncie {
    background-color: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-anuncie:hover {
    background-color: #D4AF37;
    color: #000000;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    transform: scale(1.03);
}

/* --- ÁREA DE BANNERS PATROCINADOS --- */
.patrocinadores-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px 15px 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-pub {
    background: #121212;
    border: 1px solid #333;
    border-radius: 6px;
    height: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.banner-pub:hover { border-color: #D4AF37; transform: scale(1.01); }
.banner-pub img { width: 100%; height: 100%; object-fit: cover; }

.tag-pub {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.7);
    color: #888;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

/* --- ESTILIZAÇÃO DO BANNER PREMIUM LUXO --- */
.container-premium {
    padding: 20px 15px 15px 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-luxo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #161616 0%, #2a2113 50%, #161616 100%);
    border: 1px solid #D4AF37;
    border-radius: 50px;
    padding: 15px 35px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.banner-luxo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

.luxo-conteudo {
    display: flex;
    align-items: center;
    gap: 25px;
}

.luxo-selo {
    color: #D4AF37;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.luxo-textos h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.luxo-textos p {
    color: #aaaaaa;
    font-size: 13px;
}

.btn-luxo {
    border: 2px solid #D4AF37;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    transition: 0.3s;
}

.banner-luxo:hover .btn-luxo {
    background: #D4AF37;
    color: #000000;
}

/* --- FILTROS --- */
.filtro-container { 
    display: flex; 
    gap: 10px; 
    padding: 15px; 
    background: #121212; 
    justify-content: center; 
    flex-wrap: wrap; 
    border-top: 1px solid #222; 
    border-bottom: 1px solid #222; 
}

select, button { 
    background: #222; 
    color: #fff; 
    border: 1px solid #D4AF37; 
    padding: 12px 20px; 
    border-radius: 5px; 
    font-weight: bold; 
}

button { 
    background: #D4AF37; 
    color: #000; 
    cursor: pointer; 
    border: none; 
}

.secao-titulo { 
    padding: 20px 15px 5px 15px; 
    font-size: 18px; 
    color: #D4AF37; 
    text-transform: uppercase; 
}

/* --- GRID E CARDS DAS GAROTAS --- */
.grid-garotas { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
    padding: 15px; 
}

.card { 
    background: #121212; 
    border-radius: 8px; 
    overflow: hidden; 
    border: 1px solid #222; 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
}

.img-container { 
    width: 100%; 
    height: 260px; 
    background-color: #222; 
}

.card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.info { padding: 12px; }
.nome { font-weight: bold; font-size: 16px; color: #fff; }
.detalhes { color: #aaa; font-size: 13px; margin-top: 4px; }
.valor { color: #D4AF37; font-weight: bold; margin-top: 8px; }

/* --- BADGE VERIFICADA COM EMISSÃO NEON (OLED) --- */
.badge-verificada { 
    position: absolute; 
    top: 10px; 
    left: 10px; 
    background: #D4AF37; 
    color: #000; 
    font-size: 10px; 
    font-weight: bold; 
    padding: 5px 10px; 
    border-radius: 4px; 
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6); 
}

/* --- BOTÃO DO WHATSAPP DA INDEX COM NEON VERDE --- */
.btn-whats { 
    background: #25D366; 
    color: #fff; 
    text-align: center; 
    padding: 10px; 
    text-decoration: none; 
    font-weight: bold; 
    margin: 12px; 
    border-radius: 5px; 
    display: block; 
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4); 
}

.btn-whats:hover {
    background: #20ba5a;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
    transform: scale(1.02);
}

/* --- ADICIONADO: ESTILOS DA PÁGINA INTERNA DE PERFIL --- */
.perfil-container { 
    max-width: 1000px; 
    margin: 30px auto; 
    padding: 15px; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
}

.foto-principal { 
    width: 100%; 
    height: 500px; 
    object-fit: cover; 
    border-radius: 8px; 
    border: 1px solid #222; 
}

.miniaturas-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px; 
    margin-top: 15px; 
}

.foto-mini { 
    width: 100%; 
    height: 100px; 
    object-fit: cover; 
    border-radius: 4px; 
    cursor: pointer; 
    border: 1px solid #222; 
    opacity: 0.6; 
    transition: 0.3s; 
}

.foto-mini:hover, .foto-mini.ativa { 
    opacity: 1; 
    border-color: #D4AF37; 
}

.perfil-info h2 { 
    color: #D4AF37; 
    font-size: 32px; 
    text-transform: uppercase; 
    margin-bottom: 10px; 
}

.perfil-badge { 
    background: #D4AF37; 
    color: #000; 
    font-weight: bold; 
    padding: 4px 10px; 
    border-radius: 4px; 
    font-size: 12px; 
    display: inline-block; 
    margin-bottom: 20px; 
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.dados-lista { 
    list-style: none; 
    margin-bottom: 25px; 
}

.dados-lista li { 
    padding: 10px 0; 
    border-bottom: 1px solid #222; 
    color: #ccc; 
    font-size: 16px; 
}

.dados-lista strong { 
    color: #fff; 
}

.descricao-box { 
    background: #121212; 
    padding: 20px; 
    border-radius: 6px; 
    border: 1px solid #222; 
    margin-bottom: 25px; 
    line-height: 1.6; 
    color: #aaa; 
}

.preco-tag { 
    font-size: 24px; 
    color: #D4AF37; 
    font-weight: bold; 
    margin-bottom: 25px; 
}

/* BOTÃO DO WHATSAPP DO PERFIL EXPANDIDO COM SUPER NEON */
.btn-whats-perfil { 
    background: #25D366; 
    color: #fff; 
    text-align: center; 
    padding: 15px; 
    text-decoration: none; 
    font-weight: bold; 
    border-radius: 6px; 
    display: block; 
    font-size: 18px; 
    transition: 0.3s; 
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.btn-whats-perfil:hover { 
    background: #1ebe57; 
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.9);
    transform: scale(1.02); 
}

.btn-voltar { 
    display: inline-block; 
    color: #aaa; 
    text-decoration: none; 
    margin-bottom: 20px; 
    font-size: 14px; 
}

.btn-voltar:hover { 
    color: #D4AF37; 
}

/* --- ESTILIZAÇÃO DO RODAPÉ (FOOTER) --- */
.portal-footer {
    background-color: #0c0c0c;
    border-top: 2px solid #D4AF37;
    margin-top: 50px;
    padding: 40px 20px 20px 20px;
    font-size: 14px;
}

.footer-conteudo {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.footer-coluna h4 {
    color: #D4AF37;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-logo {
    color: #D4AF37;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.aviso-18 {
    color: #ff4d4d;
    font-weight: bold;
    margin-bottom: 10px;
}

.texto-legalizacao {
    color: #888888;
    line-height: 1.6;
    max-width: 600px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

.link-denuncia {
    color: #ff4d4d !important;
    font-weight: bold;
}

.link-denuncia:hover {
    color: #ff1a1a !important;
    text-shadow: 0 0 8px rgba(255, 77, 77, 0.3);
}

.footer-direitos {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
    color: #555555;
    font-size: 12px;
}

/* --- RESPONSIVIDADE (MEDIA QUERIES) --- */
@media(max-width: 600px) {
    .patrocinadores-container { grid-template-columns: 1fr; }
}

@media(min-width: 768px) { 
    .grid-garotas { 
        grid-template-columns: repeat(4, 1fr); 
        max-width: 1200px; 
        margin: 0 auto; 
    } 
}

@media (max-width: 768px) {
    .perfil-container { grid-template-columns: 1fr; }
    .banner-luxo {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        gap: 15px;
        padding: 20px;
    }
    .luxo-conteudo {
        flex-direction: column;
        gap: 10px;
    }
    .luxo-textos p {
        display: none;
    }
    .footer-conteudo {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .texto-legalizacao {
        margin: 0 auto;
    }
    .footer-links a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
/* ==========================================================================
   🚨 ESTILOS DO ALERTA 18+ E BARRA DE COOKIES (NOVO)
   ========================================================================== */

/* Tela Preta de Bloqueio Total (Overlay) */
.overlay-restrito {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98); /* Quase 100% preto para tampar o site */
    z-index: 99999; /* Fica acima de TUDO no site */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Caixa Central de Mensagem */
.box-restrito {
    background: #121212;
    border: 2px solid #D4AF37;
    max-width: 500px;
    width: 100%;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.box-restrito h2 {
    color: #D4AF37;
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.aviso-vermelho {
    color: #ff4d4d;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.texto-aviso {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Alinhamento dos botões do portão 18+ */
.botoes-aviso {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-entrar-18 {
    background: #D4AF37 !important;
    color: #000 !important;
    font-weight: bold;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.btn-entrar-18:hover {
    background: #b8952e !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.btn-sair-18 {
    background: transparent !important;
    color: #888888 !important;
    border: 1px solid #333 !important;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-sair-18:hover {
    color: #ffffff !important;
    border-color: #ff4d4d !important;
    background: rgba(255, 77, 77, 0.1) !important;
}

/* Barrinha de Consentimento de Cookies (LGPD) */
.cookie-container {
    position: fixed;
    bottom: -100px; /* Começa escondida para dar efeito de subida */
    left: 0;
    width: 100%;
    background: #121212;
    border-top: 1px solid #222;
    z-index: 9999;
    padding: 15px 20px;
    transition: bottom 0.5s ease-in-out;
}

/* Classe ativada via JS para fazer a barra subir suavemente */
.cookie-container.mostrar {
    bottom: 0;
}

.cookie-conteudo {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-conteudo p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.5;
}

.cookie-conteudo a {
    color: #D4AF37;
    text-decoration: none;
}

.cookie-conteudo a:hover {
    text-decoration: underline;
}

.cookie-conteudo button {
    background: #222;
    color: #fff;
    border: 1px solid #D4AF37;
    padding: 8px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    transition: 0.3s;
}

.cookie-conteudo button:hover {
    background: #D4AF37;
    color: #000;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Responsividade para telas de celulares */
@media (max-width: 768px) {
    .botoes-aviso {
        grid-template-columns: 1fr; /* Botões um embaixo do outro no celular */
    }
    .cookie-conteudo {
        flex-direction: column;
        text-align: center;
    }
    .cookie-conteudo button {
        width: 100%;
    }
}
/* ======================================================= */
/* ⭐ ESTILOS EXCLUSIVOS PARA ANÚNCIOS DESTACADOS (PREMIUM) */
/* ======================================================= */

/* Classe dinâmica que o PHP aplica quando 'verificada' for igual a 1 */
.card-destacado {
    border: 2px solid #D4AF37 !important; /* Força uma borda dourada mais grossa */
    background: linear-gradient(135deg, #181510 0%, #0a0a0a 100%) !important; /* Fundo levemente dourado escuro escadeado */
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25) !important; /* Brilho neon dourado em volta do card */
    position: relative;
    transform: scale(1.01); /* Deixa o card minimamente maior que os outros na lista */
}

/* Efeito de passar o mouse por cima do anúncio pago */
.card-destacado:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4) !important;
    transform: scale(1.02) !important;
    transition: 0.3s ease-in-out;
}

/* Estilo para a Estrela piscante no nome */
.estrela-premium {
    color: #D4AF37;
    animation: piscarBrilho 2s infinite alternate;
    display: inline-block;
    margin-left: 5px;
}

@keyframes piscarBrilho {
    0% { opacity: 0.6; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); filter: drop-shadow(0 0 5px #D4AF37); }
}
.logo a {
    font-family: 'Cinzel', serif;
    color: #D4AF37;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
/* ==========================================================================
   🚨 BOTÃO FLUTUANTE DE SUPORTE (PÁGINA DE CADASTRO)
   ========================================================================== */

.btn-suporte-cadastro {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #D4AF37 0%, #AA882C 100%);
    color: #000000 !important;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 99999; /* Garante que fique visível acima de qualquer grid ou card */
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease-in-out;
}

.btn-suporte-cadastro:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.7);
    background: #D4AF37;
}

/* Ajuste fino para não cobrir campos ou botões importantes no celular */
@media (max-width: 600px) {
    .btn-suporte-cadastro {
        bottom: 15px;
        right: 15px;
        font-size: 12px;
        padding: 12px 18px;
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    }
}
/* ==========================================================================
   👑 ESTILIZAÇÃO DA COROA DO PRIME ENCONTROS
   ========================================================================== */

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Afastamento perfeito do texto para a coroa */
}

.coroa-header {
    font-size: 24px; /* Tamanho exato para acompanhar o tamanho da fonte Cinzel */
    vertical-align: middle;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6)); /* Aplica o efeito luminoso dourado do Luxo */
    transform: translateY(-3px); /* Sobe a coroa um milímetro para alinhar com as letras maiúsculas */
    animation: brilhoReal 3s infinite alternate;
}

/* Animação sutil para o dourado parecer um luminoso de verdade */
@keyframes brilhoReal {
    0% { filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.4)); transform: translateY(-3px) scale(1); }
    100% { filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.8)); transform: translateY(-3px) scale(1.02); }
}