@charset "UTF-8";

/* =========================================
   1. GERAL E RESET
   ========================================= */
/* =========================================
   LOGO CENTRAL DOURADO (TAMANHO CONTROLADO)
   ========================================= */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

/* Transição global para links e botões ficarem macios */
a, button, .card-valor, .card-servico {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    scroll-behavior: smooth;
}
.hero-logo {
    width: 160px; /* Tamanho fixo e elegante para computador */
    max-width: 80vw; /* Garante que nunca ultrapassa 80% da largura do ecrã */
    height: auto;
    margin: 0 auto 30px auto; /* Centraliza perfeitamente e dá margem em baixo */
    display: block;
    object-fit: contain; /* Impede que a imagem fique distorcida */
    filter: drop-shadow(0px 10px 20px rgba(197, 160, 89, 0.15)); 
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

/* Efeito Dourado na Assinatura Cria Comigo */
.link-assinatura {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.link-assinatura:hover {
    color: #c5a059 !important;
}
/* =========================================
   1. GERAL E RESET
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

html {
    scroll-behavior: smooth; /* É ESSA LINHA QUE FAZ O DESLIZE SUAVE */
}

html, body { 
    width: 100%; 
    margin: 0; 
    padding: 0; 
    overflow-x: hidden; 
}
body { background-color: #120808; color: #f5f5f5; }
img { max-width: 100%; height: auto; display: block; }

/* =========================================
   2. CABEÇALHO E MENU
   ========================================= */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; background: rgba(18, 8, 8, 0.95);
    position: fixed; width: 100%; top: 0; backdrop-filter: blur(10px); z-index: 100;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}
a.logo-container, a.logo-container:link, a.logo-container:visited, a.logo-container:hover, a.logo-container:active {
    display: flex !important; align-items: center !important; text-decoration: none !important;
    color: #c5a059 !important; border-left: 3px solid #c5a059; padding-left: 12px;
    outline: none !important; -webkit-tap-highlight-color: transparent;
}
.logo-jrm { font-size: 1.8rem; font-weight: bold; color: #c5a059 !important; letter-spacing: 2px; }
.logo-full { font-size: 1.1rem; color: #f5f5f5 !important; font-family: 'Georgia', serif; max-width: 0; opacity: 0; white-space: nowrap; margin-left: 0; transition: all 0.5s ease; }
.logo-container:hover .logo-full { max-width: 300px; opacity: 1; margin-left: 15px; }

.menu-toggle { display: none; font-size: 2.5rem; color: #c5a059; cursor: pointer; }
nav { display: flex; gap: 40px; align-items: center; }
nav a { color: #f5f5f5; text-decoration: none; font-size: 0.95rem; transition: 0.3s; }
nav a:hover, nav a.ativo { color: #c5a059; }

/* =========================================
   3. BOTÃO WHATSAPP FLUTUANTE
   ========================================= */
.whatsapp-flutuante { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 35px; box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.4); z-index: 1000; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: 0.3s ease; animation: pulse-whatsapp 2s infinite; }
.whatsapp-flutuante:hover { background-color: #1ebe57; transform: scale(1.1); }
@keyframes pulse-whatsapp { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* =========================================
   4. PÁGINA INICIAL (INDEX) E GERAL
   ========================================= */
/* =========================================
   4. PÁGINA INICIAL (INDEX) E GERAL
   ========================================= */
/* =========================================
   4. PÁGINA INICIAL (INDEX) E GERAL (ATUALIZADO)
   ========================================= */
.hero { 
    height: 100vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    /* Fundo elegante em gradiente (sem imagem) */
    background: radial-gradient(circle at center, #2A0505 0%, #080303 85%); 
    padding: 0 5%; 
    position: relative; 
}

/* NOVO: Estilos para o logo central dourado (image_05f711.png) */
.hero-logo {
    max-width: 220px; /* Tamanho premium baseado no asset fornecido */
    width: 100%; /* Mantém responsividade */
    height: auto; /* Preserva proporção */
    margin-bottom: 30px; /* Espaço até o H1 */
    display: block; /* Garante centralização */
    margin-left: auto;
    margin-right: auto;
    /* Adiciona um leve "brilho" dourado no fundo para dar profundidade */
    filter: drop-shadow(0px 10px 20px rgba(197, 160, 89, 0.2)); 
}

.hero h1 { font-size: 3.5rem; margin-bottom: 10px; font-family: 'Georgia', serif; color: #f5f5f5; }
.hero p { font-size: 1.2rem; color: #cccccc; margin-bottom: 30px; max-width: 600px; }
.btn-whatsapp { background-color: #c5a059; color: #0a0a0a; padding: 15px 30px; text-decoration: none; font-weight: bold; border-radius: 5px; font-size: 1.1rem; transition: 0.3s; }
.btn-whatsapp:hover { background-color: #e3be77; transform: translateY(-3px); }
.scroll-down { position: absolute; bottom: 30px; display: flex; flex-direction: column; align-items: center; color: #a0a0a0; font-size: 0.85rem; opacity: 0.8; }
.scroll-down i.bx-mouse { font-size: 1.8rem; margin-bottom: 5px; color: #c5a059; }
.animar-seta { font-size: 1.5rem; color: #c5a059; animation: bounce 2s infinite; }

.servicos, .feed, .faq { padding: 80px 5%; text-align: center; }
.faq { background-color: #0d0606; }
.servicos h2, .feed h2, .faq h2 { font-family: 'Georgia', serif; font-size: 2.5rem; color: #c5a059; margin-bottom: 50px; }

.grid-servicos { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.card-servico { background-color: #1a1010; padding: 40px 20px; border-radius: 8px; border: 1px solid #2d1b1b; transition: all 0.3s ease; overflow: hidden; cursor: pointer; }
.card-servico:hover { border-color: #c5a059; transform: translateY(-5px); }
.card-servico i { font-size: 3rem; color: #c5a059; margin-bottom: 20px; transition: 0.3s; display: block; }
.card-servico:hover i { transform: scale(1.15); }
.card-servico h3 { color: #f5f5f5; font-size: 1.3rem; margin-bottom: 15px; }
.card-servico p { color: #a0a0a0; font-size: 0.95rem; line-height: 1.6; }

.faq-container { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item { background-color: #1a1010; border: 1px solid #2d1b1b; border-radius: 8px; margin-bottom: 15px; overflow: hidden; }
.faq-pergunta { width: 100%; padding: 20px; background: none; border: none; color: #f5f5f5; font-size: 1.1rem; font-weight: bold; text-align: left; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: color 0.3s; }
.faq-pergunta:hover { color: #c5a059; }
.faq-pergunta i { font-size: 1.5rem; transition: transform 0.3s ease; }
.faq-resposta { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background-color: #120808; }
.faq-resposta p { padding: 0 20px 20px 20px; color: #a0a0a0; line-height: 1.6; }
.faq-item.ativo .faq-resposta { max-height: 200px; }
.faq-item.ativo .faq-pergunta i { transform: rotate(180deg); color: #c5a059; }

/* =========================================
   5. PÁGINA: SOBRE NÓS
   ========================================= */
.sobre-hero { padding: 150px 5% 80px 5%; background: linear-gradient(to bottom, #2A0505 0%, #120808 100%); text-align: center; }
.sobre-hero h1 { font-size: 3rem; font-family: 'Georgia', serif; color: #f5f5f5; margin-bottom: 10px; }
.sobre-hero p { font-size: 1.2rem; color: #c5a059; }

.sobre-perfil { padding: 80px 5%; }
.perfil-container { max-width: 1100px; margin: 0 auto; display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
.perfil-imagem { flex: 1; min-width: 300px; max-width: 420px; margin: 0 auto; }
.perfil-imagem img { width: 100%; height: auto; border-radius: 8px; border: 2px solid #2d1b1b; box-shadow: -15px 15px 0px rgba(197, 160, 89, 0.1); }
.perfil-texto { flex: 1.5; min-width: 300px; }
.perfil-texto h2 { font-family: 'Georgia', serif; font-size: 2.5rem; color: #f5f5f5; margin-bottom: 5px; }
.oab-destaque { color: #c5a059; font-size: 1.1rem; margin-bottom: 25px; letter-spacing: 1px; }
.perfil-texto p { color: #a0a0a0; font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }

.sobre-valores { padding: 80px 5%; background-color: #0d0606; }
.grid-valores { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.card-valor { background-color: #1a1010; padding: 40px 30px; border-radius: 8px; border-top: 3px solid #c5a059; text-align: center; transition: 0.3s; }
.card-valor:hover { transform: translateY(-5px); border-color: #c5a059; }
.card-valor i { font-size: 3rem; color: #c5a059; margin-bottom: 20px; display: block; }
.card-valor h3 { color: #f5f5f5; font-size: 1.3rem; margin-bottom: 15px; }
.card-valor p { color: #a0a0a0; line-height: 1.6; }

.sobre-localizacao { display: flex; flex-wrap: wrap; max-width: 1200px; margin: 80px auto; background-color: #1a1010; border-radius: 8px; border: 1px solid #2d1b1b; overflow: hidden; }
.localizacao-info { flex: 1; padding: 50px; min-width: 300px; display: flex; flex-direction: column; justify-content: center; }
.localizacao-info h2 { font-family: 'Georgia', serif; font-size: 2rem; color: #c5a059; margin-bottom: 30px; }
.localizacao-info p { color: #f5f5f5; font-size: 1.1rem; margin-bottom: 15px; display: flex; align-items: center; gap: 15px; }
.localizacao-info i { color: #c5a059; font-size: 1.5rem; }
.localizacao-mapa { flex: 1; min-width: 300px; min-height: 400px; }

/* =========================================
   6. PÁGINA: FEED / BLOG
   ========================================= */
.feed-hero { padding: 150px 5% 80px 5%; background: linear-gradient(to bottom, #2A0505 0%, #120808 100%); text-align: center; }
.feed-hero h1 { font-size: 3rem; font-family: 'Georgia', serif; color: #f5f5f5; margin-bottom: 10px; }
.feed-hero p { font-size: 1.2rem; color: #c5a059; }
.feed-conteudo { padding: 60px 5%; max-width: 1200px; margin: 0 auto; }
.tag { display: inline-block; padding: 5px 12px; background-color: rgba(197, 160, 89, 0.1); color: #c5a059; font-size: 0.8rem; font-weight: bold; border-radius: 20px; margin-bottom: 15px; border: 1px solid rgba(197, 160, 89, 0.3); width: fit-content; }
.artigo-destaque { display: flex; background-color: #1a1010; border: 1px solid #2d1b1b; border-radius: 8px; overflow: hidden; margin-bottom: 60px; transition: transform 0.3s, border-color 0.3s; }
.artigo-destaque:hover { border-color: #c5a059; transform: translateY(-5px); }
.destaque-img { flex: 1.2; min-height: 350px; background-size: cover; background-position: center; }
.destaque-texto { flex: 1; padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.destaque-texto h2 { color: #f5f5f5; font-size: 2rem; margin-bottom: 15px; font-family: 'Georgia', serif; line-height: 1.3; }
.destaque-texto p { color: #a0a0a0; line-height: 1.6; margin-bottom: 25px; font-size: 1.05rem; }

.grid-feed { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; text-align: left; }
.card-feed { background-color: #1a1010; border-radius: 8px; border: 1px solid #2d1b1b; transition: all 0.3s ease; overflow: hidden; }
.card-feed:hover { border-color: #c5a059; transform: translateY(-5px); }
.imagem-feed { width: 100%; height: 200px; object-fit: cover; display: block; }
.conteudo-feed { padding: 25px; }
.conteudo-feed h4 { color: #f5f5f5; font-size: 1.2rem; margin-bottom: 10px; }
.conteudo-feed p { color: #a0a0a0; font-size: 0.9rem; line-height: 1.5; margin-bottom: 15px; }
.ler-mais { color: #c5a059; text-decoration: none; font-size: 0.9rem; font-weight: bold; }
.ler-mais:hover { color: #e3be77; }
.paginacao { text-align: center; margin-top: 60px; }
.btn-carregar { background: none; border: 2px solid #c5a059; color: #c5a059; padding: 12px 30px; font-size: 1rem; font-weight: bold; border-radius: 5px; cursor: pointer; transition: 0.3s; }
.btn-carregar:hover { background: #c5a059; color: #0a0a0a; }

/* =========================================
   7. PÁGINA: FERRAMENTAS E LINKS ÚTEIS
   ========================================= */
.ferramentas-hero { padding: 150px 5% 80px 5%; background: linear-gradient(to bottom, #2A0505 0%, #120808 100%); text-align: center; }
.ferramentas-hero h1 { font-size: 3rem; font-family: 'Georgia', serif; color: #f5f5f5; margin-bottom: 10px; }
.ferramentas-hero p { font-size: 1.2rem; color: #c5a059; }

.secao-calculadoras { padding: 80px 5%; background-color: #0d0606; }
.grid-calculadoras { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; }
.card-calc { background-color: #1a1010; padding: 40px 30px; border-radius: 10px; border: 1px solid #2d1b1b; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; justify-content: space-between; }
.card-calc:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(197, 160, 89, 0.05); border-color: #c5a059; }
.calc-icon { width: 70px; height: 70px; background-color: rgba(197, 160, 89, 0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto 20px auto; }
.calc-icon i { font-size: 2.5rem; color: #c5a059; }
.card-calc h3 { color: #f5f5f5; font-size: 1.4rem; margin-bottom: 15px; }
.card-calc p { color: #a0a0a0; line-height: 1.6; margin-bottom: 25px; font-size: 0.95rem; }
.btn-calc { width: 100%; padding: 15px; background-color: transparent; border: 1px solid #c5a059; color: #c5a059; font-weight: bold; border-radius: 5px; cursor: pointer; transition: all 0.3s ease; }
.card-calc:hover .btn-calc { background-color: #c5a059; color: #0a0a0a; }

.secao-links { padding: 80px 5%; background-color: #120808; }
.grid-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }
.card-link { display: flex; align-items: center; gap: 15px; background-color: #1a1010; padding: 20px; border-radius: 8px; text-decoration: none; color: #a0a0a0; border: 1px solid #2d1b1b; transition: all 0.3s ease; }
.card-link i { font-size: 2rem; color: #c5a059; transition: transform 0.3s ease; }
.card-link span { font-size: 1rem; font-weight: bold; }
.card-link:hover { background-color: #2A0505; border-color: #c5a059; color: #f5f5f5; }
.card-link:hover i { transform: scale(1.2); }

/* =========================================
   8. CARTÃO DE VISITAS DIGITAL (CONTATO)
   ========================================= */
.cartao-digital { padding: 120px 5% 60px 5%; display: flex; justify-content: center; align-items: center; background: linear-gradient(135deg, #120808 0%, #2A0505 100%); flex-grow: 1; }
.cartao-container { background-color: #1a1010; width: 100%; max-width: 400px; padding: 40px 25px; border-radius: 20px; border: 1px solid #2d1b1b; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.6); margin: 0 auto; }
.perfil-mini { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid #c5a059; margin: 0 auto 20px auto; }
.cartao-header h1 { font-family: 'Georgia', serif; font-size: 1.8rem; color: #f5f5f5; margin-bottom: 5px; }
.cartao-links { display: flex; flex-direction: column; gap: 12px; margin: 30px 0; }
.btn-link-digital { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 18px; background-color: #241818; color: #f5f5f5; text-decoration: none; border-radius: 12px; border: 1px solid #3d2525; font-weight: bold; transition: 0.3s ease; }
.btn-link-digital:hover { border-color: #c5a059; transform: scale(1.02); }
.whatsapp-bg { background-color: #25d366 !important; color: #fff !important; border: none !important; }
.vcf-bg { border: 2px solid #c5a059 !important; color: #c5a059 !important; }
.cartao-sociais { display: flex; justify-content: center; gap: 20px; margin-top: 20px; }
.cartao-sociais a { color: #c5a059; font-size: 1.8rem; transition: 0.3s; }
.cartao-sociais a:hover { color: #f5f5f5; transform: translateY(-3px); }

/* =========================================
   9. RODAPÉ (FOOTER)
   ========================================= */
footer { background-color: #080303; border-top: 1px solid #2d1b1b; padding: 60px 5% 20px 5%; }
.footer-conteudo { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-coluna p { color: #a0a0a0; line-height: 1.6; margin-top: 15px; display: flex; align-items: center; gap: 10px; }
.footer-coluna h4 { color: #f5f5f5; font-size: 1.2rem; margin-bottom: 20px; }
.footer-coluna i { color: #c5a059; font-size: 1.2rem; }
.redes-sociais { display: flex; gap: 15px; }
.redes-sociais a { background-color: #1a1010; color: #c5a059; width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; border-radius: 50%; text-decoration: none; font-size: 1.5rem; transition: all 0.3s ease; border: 1px solid #2d1b1b; }
.redes-sociais a:hover { background-color: #c5a059; color: #080303; transform: translateY(-3px); }
.footer-bottom { text-align: center; border-top: 1px solid #2d1b1b; padding-top: 20px; max-width: 1200px; margin: 0 auto; color: #666; font-size: 0.85rem; }

/* =========================================
   10. RESPONSIVIDADE (CELULARES) - OBRIGATÓRIO SER O ÚLTIMO
   ========================================= */
@media (max-width: 768px) {
    .menu-toggle { display: block !important; }
    .logo-full { display: none !important; }
    
    nav { position: absolute; top: 100%; left: -100%; width: 100%; background-color: rgba(18, 8, 8, 0.98); flex-direction: column; padding: 30px 0; transition: 0.4s ease; border-bottom: 1px solid rgba(197, 160, 89, 0.2); }
    nav.ativo { left: 0; }
    /* Ajuste do logótipo central no telemóvel */
    .hero-logo {
        width: 130px; 
        margin-bottom: 20px;
    }
    .hero h1 { font-size: 2.5rem; }
    .scroll-down { bottom: 15px !important; }
    
    .whatsapp-flutuante { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 30px; }

    .artigo-destaque { flex-direction: column; }
    .destaque-img { min-height: 250px; }
    .destaque-texto { padding: 30px 20px; }
    .destaque-texto h2 { font-size: 1.5rem; }
    
    /* Ajustes Mobile para a página SOBRE NÓS */
    .perfil-container { flex-direction: column; text-align: center; gap: 30px; padding: 0 10px; }
    .perfil-imagem { max-width: 100%; margin-bottom: 10px; }
    .perfil-imagem img { box-shadow: none; }
}