/* --- CONFIGURAÇÕES GLOBAIS --- */
:root { 
    --primary: #FFC100;         /* Dourado Free */
    --dark-bg: #000000;        /* Preto Absoluto */
    --card-black: #0a0a0a;     /* Preto para Cards */
    --body-gray: #F7F4F4;      /* Cinza solicitado */
    --text-dark: #1A1A1A;      /* Texto principal */
    --text-muted: #666666;     /* Texto secundário */
    --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: var(--body-gray); 
    color: var(--text-dark); 
    padding-top: 0; /* Removido para o Menu Transparente flutuar no Hero */
    overflow-x: hidden;
}

span { color: var(--primary); }
a { text-decoration: none; transition: var(--transition); }

/* --- HEADER DINÂMICO (TRANSPARENTE -> PRETO) --- */
.main-header { 
    background: transparent; 
    padding: 25px 0; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
    transition: all 0.4s ease-in-out;
}

/* Classe ativada via JS no scroll */
.main-header.scrolled { 
    background: var(--dark-bg); 
    padding: 15px 0; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
    align-items: center; 
    margin: 0; 
}

.nav-links a { 
    color: #ffffff; 
    font-weight: 600; 
    font-size: 0.95rem; 
    text-transform: none; /* Letras minúsculas conforme solicitado */
    letter-spacing: 0.5px;
}

.nav-links a:hover { color: var(--primary); }

.btn-cta-nav { 
    background: var(--primary); 
    color: #000 !important; 
    padding: 10px 22px; 
    border-radius: 8px; 
    font-weight: 800; 
}

/* --- SEÇÕES --- */
section { padding: 100px 0; position: relative; }

.tag { 
    color: var(--primary); 
    font-weight: 800; 
    font-size: 0.75rem; 
    letter-spacing: 2px; 
    display: block; 
    margin-bottom: 15px; 
    text-transform: uppercase;
}

/* --- HERO BLACK --- */
.hero-black {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--dark-bg);
    color: #fff;
    text-align: center;
}

.hero-black h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.btn-main {
    background: var(--primary);
    color: #000;
    padding: 18px 45px;
    border-radius: 10px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* --- CARDS DE PRODUTOS (ALINHAMENTO TRAVADO) --- */
.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px; 
}

.product-card { 
    background: var(--card-black); 
    padding: 45px 35px; 
    border-radius: 24px; 
    border: 1px solid #1a1a1a; 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
}

.product-card:hover { 
    border-color: var(--primary); 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); 
}

.product-card .icon-wrap i { 
    font-size: 2.8rem; 
    color: var(--primary); 
    margin-bottom: 25px; 
    display: block; 
}

.product-card h3 { 
    color: #fff; 
    font-size: 1.4rem; 
    font-weight: 800; 
    margin-bottom: 15px; 
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    text-transform: none;
}

.product-card p { 
    color: #888; 
    font-size: 0.95rem; 
    flex-grow: 1; 
    margin-bottom: 25px;
}

.read-more-link { 
    color: var(--primary); 
    font-size: 0.8rem; 
    font-weight: 800; 
    text-transform: none; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}


/* Customização do FAQ */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFC100'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary) !important;
    background-color: transparent !important;
}

/* BOTÃO DE SUPORTE FAQ PREMIUM (CORRIGIDO) */
.btn-suporte-faq {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 10px 10px 10px 25px;
    border: 1.5px solid #ccc; /* Borda um pouco mais visível */
    border-radius: 50px;
    color: #000000 !important; /* Força a cor preta no texto */
    font-weight: 800;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    background: transparent;
    cursor: pointer;
}

.btn-suporte-faq span {
    color: #000000 !important; /* Garante que o texto interno seja preto */
}

.btn-suporte-faq .icon-circle {
    width: 45px;
    height: 45px;
    background: var(--dark-bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Efeito ao passar o mouse */
.btn-suporte-faq:hover {
    border-color: var(--dark-bg);
    background: #ffffff; /* Fundo branco no hover para destacar o texto preto */
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.btn-suporte-faq:hover .icon-circle {
    background: var(--primary);
    color: #000;
    transform: rotate(15deg);
}

/* AJUSTE BOTÃO WHATSAPP CTA */
.btn-cta-woman {
    display: flex !important; /* Força o aparecimento */
    align-items: center;
    background: #000000;
    color: #ffffff !important;
    padding: 18px 30px;
    border-radius: 16px;
    gap: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: fit-content;
    border: 1px solid #222;
}

.btn-cta-woman:hover {
    background: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255,193,0,0.25);
    border-color: var(--primary);
}

.btn-cta-woman:hover .text-box strong,
.btn-cta-woman:hover .text-box small {
    color: #000 !important;
}

.btn-cta-woman .icon-box i {
    font-size: 2.2rem;
    color: #25D366;
}

.btn-cta-woman:hover .icon-box i {
    color: #000 !important;
}

/* Efeito de Pulinho no Online Agora */
.pulse-green {
    width: 10px;
    height: 10px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}


/* --- BLOG COM ESTILO DE PRODUTOS --- */
.blog-card-premium {
    background: var(--card-black); /* Mesmo fundo dos produtos */
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #1a1a1a;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.blog-card-premium:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.blog-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.blog-card-premium:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #000;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 900;
    z-index: 5;
    text-transform: uppercase;
}

.blog-content-premium {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content-premium h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content-premium p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Link Dourado */
.btn-read-gold {
    color: var(--primary) !important;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

/* Botão Ver Todas (Estilo Black & Gold) */
.btn-ver-todos-blog {
    padding: 10px 25px;
    border: 1.5px solid var(--dark-bg);
    border-radius: 50px;
    color: var(--dark-bg);
    font-weight: 800;
    font-size: 0.85rem;
    transition: 0.3s;
    text-decoration: none;
}

.btn-ver-todos-blog:hover {
    background: var(--dark-bg);
    color: var(--primary) !important;
}

/* PAGINAÇÃO PREMIUM */
.pagination-premium {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.pagination-premium li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 12px;
    color: var(--dark-bg);
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.pagination-premium li.active a,
.pagination-premium li a:hover {
    background: var(--dark-bg);
    color: var(--primary);
    border-color: var(--dark-bg);
}

/* --- PÁGINA DE POST --- */
.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 30px 0;
}

.post-body h2, .post-body h3 {
    color: var(--dark-bg);
    font-weight: 800;
    margin: 40px 0 20px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--body-gray);
    border-radius: 12px;
    color: var(--dark-bg);
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid transparent;
}

.sidebar-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.sidebar-item:hover {
    background: #fff;
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}


/* --- FOOTER ALINHADO --- */
.main-footer { 
    background: #000; 
    padding: 80px 0 0; 
    color: #fff; 
    border-top: 1px solid #111; 
}

.footer-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    gap: 40px; 
    padding-bottom: 60px;
}

.footer-col { 
    flex: 1; 
    min-width: 250px; 
}

.footer-logo { 
    font-family: 'Syncopate', sans-serif; 
    font-weight: 700; 
    font-size: 1.2rem; 
    color: #fff; 
    margin-bottom: 25px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    text-transform: none;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links a { 
    color: #888; 
    display: block; 
    margin-bottom: 12px; 
    text-transform: none;
}

.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.footer-bottom { 
    background: #000;
    padding: 25px 0; 
    border-top: 1px solid #111; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

/* ÁREA RESTRITA */
.btn-admin-login { 
    color: #555 !important; 
    font-weight: 700; 
    border: 1px solid #222; 
    padding: 6px 15px; 
    border-radius: 5px; 
    display: inline-flex; 
    align-items: center;
}

.btn-admin-login:hover { color: var(--primary) !important; border-color: var(--primary); }

/* --- RESPONSIVIDADE --- */
@media (max-width: 991px) {
    .main-header { background: var(--dark-bg); padding: 15px 0; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 75px; left: 0; width: 100%; background: #000; padding: 30px; gap: 20px; text-align: center; }
    .nav-links.active { display: flex; }
    .footer-grid { flex-direction: column; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}