@font-face{font-family:'Adobe Jenson Pro';src:url('fonts/AJensonPro-LtDisp.woff2') format('woff2');font-weight:300;font-display:swap;font-style:normal}
@font-face{font-family:'Adobe Jenson Pro';src:url('fonts/AJensonPro-Disp.woff2') format('woff2');font-weight:400;font-display:swap;font-style:normal}
@font-face{font-family:'Adobe Jenson Pro';src:url('fonts/AJensonPro-SemiboldDisp.woff2') format('woff2');font-weight:600;font-display:swap;font-style:normal}
@font-face{font-family:'Adobe Jenson Pro';src:url('fonts/AJensonPro-BoldDisp.woff2') format('woff2');font-weight:700;font-display:swap;font-style:normal}
/* ==========================================================================
   1. CONFIGURAÇÕES GLOBAIS (RESET E BASE)
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body { 
    background-color: #fff; 
    color: #000; 
    font-family: 'Adobe Jenson Pro',serif;
    line-height: 1.8;
	font-size: 18px;
}

/* Classes Utilitárias de Espaçamento */
.gap-10 { height: 10px; }
.gap-25 { height: 25px; }
.gap-30 { height: 30px; }
.gap-40 { height: 40px; }
.gap-50 { height: 50px; }
.gap-75 { height: 75px; }
/* ==========================================================================
   TIMBRE DE SESSÃO E DATA
   ========================================================================== */
.status-barra {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #000;
}

.separador {
    color: #dcdcdc;
    font-weight: normal;
}

#sessao-id {
    color: #800; /* Um tom de vinho profundo para destacar a sessão, mantendo a sobriedade */
	font-weight: 700;
}

@media screen and (max-width: 480px) {
    .status-barra {
        flex-direction: column;
        gap: 5px;
    }
    .separador { display: none; }
}
/* ==========================================================================
   2. ESTRUTURA PRINCIPAL (LAYOUT)
   ========================================================================== */
.main-wrapper { 
    display: flex; 
    justify-content: center; 
    padding: 20px 20px; 
}

.site-container { 
    max-width: 850px; 
    width: 100%; 
    border: 1px solid #dcdcdc; 
    padding: 60px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.03); 
}

/* Container interno usado para envolver a Navbar no index */
.form-container { 
    width: 100%;
}
/* ==========================================================================
   3. IDENTIDADE VISUAL (LOGOTIPO EM IMAGEM)
   ========================================================================== */
.brasao { 
    text-align: center; 
    margin-bottom: 40px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.brasao img { 
    width: 100%;           /* Ocupa a largura disponível até o limite do max-width */
    max-width: 320px;      /* Largura padrão para desktop */
    height: auto; 
    display: block;
    transition: transform 0.3s ease;
}

/* Ajuste para Mobile Estrito (Dispositivos muito pequenos) */
@media screen and (max-width: 480px) {
    .brasao img { 
        max-width: 200px;  /* Limite de 160px para telas estreitas */
    }
}
/* ==========================================================================
   3.1 IDENTIDADE E NAVEGAÇÃO (HEADER)
   ========================================================================== */

.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1.5px solid #000;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin-top: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.nav-cta { font-weight: bold; color: #000 !important; border-bottom: 1px solid #000; }

/* Menu Mobile Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 5px;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}

/* ==========================================================================
   4. SEÇÃO HERO E IMAGENS
   ========================================================================== */
.hero { text-align: center; margin-bottom: 60px; }
.protocolo-id { font-size: 12px; letter-spacing: 2px; color: #585858; text-transform: uppercase; }
.hero h1 { font-size: 20px; text-transform: uppercase; letter-spacing: 2px; margin: 20px 0; font-weight: 700; }
.linha-divisora { width: 50px; height: 1.5px; background: #000; margin: 0 auto 30px; }
.hero p { font-size: 18px; color: #333; max-width: 600px; margin: 0 auto; }
/* Formatação de Links em Blocos de Texto */
.text-block a, .texto-protocolo a {
    color: #000; /* Preto sólido para integridade visual */
    text-decoration: none; /* Remove o sublinhado padrão */
    font-weight: bold;
    border-bottom: 1px solid #dcdcdc; /* Sublinhado discreto e elegante */
    transition: all 0.3s ease;
}

.text-block a:hover, .texto-protocolo a:hover {
    color: #800; /* Tom de vinho para indicar interatividade com sobriedade */
    border-bottom: 1px solid #800;
}
.hero-image-container {
    width: 100%;
    margin-top: 50px; 
    line-height: 0;
    overflow: hidden;
    border: 1px solid #dcdcdc;
    transition: transform 0.3s ease-in-out;
}

.hero-responsive-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.hero-image-container:hover { transform: scale(1.02); }
.hero-image-container:hover .hero-responsive-img { filter: brightness(1.02); }

/* ==========================================================================
   5. COMPONENTES DE CONTEÚDO (CARDS E TRANSIÇÕES)
   ========================================================================== */
.text-block { margin-bottom: 50px; }
h1 { font-size: clamp(24px, 5vw, 32px); letter-spacing: 0.2em; }
h2 { font-size: 18px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; font-weight: 700; }
h2.decreto {
	text-transform: none;
            font-size: 20px;
            font-weight: 700;
	border: none;
	padding-left: 0px;
            letter-spacing: 1px;
        }
.text-block p { margin-bottom: 20px; font-size: 18px; color: #222; }
.text-block p.decreto {
            font-size: 14px;
            letter-spacing: 2px;
            color: #800;
	margin-bottom: 5px;
            font-weight: 700;
        }

.grid-servicos { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 60px; }

.card {
    padding: 25px;
    background: #f4f4f4;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 220, 220, 0.4);
    transition: all 0.4s ease;
}

.card h3 { font-size: 18px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.card p { font-size: 16px; color: #505050; }

.card:hover {
    border-color: #000;
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.02);
}

/* Admissibilidade Transição */
.transicao-admissibilidade { margin: 80px 0; text-align: left; }
.linha-fina { width: 60px; height: 1px; background-color: #dcdcdc; margin: 0 auto; }
.linha-finafull { width: 100%; height: 1px; background-color: #dcdcdc; margin: 60px auto; }
.linha-grossa { width: 100%; height: 3px; background-color: #000; margin: 50px auto 60px auto; }
.texto-protocolo { font-size: 18px; color: #585858; margin: 30px auto; letter-spacing: 0.5px; }
.link-direto { display: inline-block; text-decoration: none; color: #800; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; font-weight: bold; border-bottom: 1px solid transparent; transition: border-color 0.4s ease; }
.link-direto:hover { border-bottom: 1px solid #800; }

.action-area { text-align: center; padding: 40px 0; border-top: 1px solid #eee; }
.nota-admissibilidade { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: #585858; margin-bottom: 30px; }

.disclaimer-area { text-align: center; padding: 40px 0; border-top: 1px solid #eee; }
.nota-disclaimer { margin-bottom: 30px; }
.nota-disclaimer p.titulo {
    font-size: 16px; /* O tamanho que o seu h4 tinha */
    font-weight: bold;
	color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}
.nota-disclaimer p { font-size: 16px; color: #585858; list-style: none; margin-bottom: 10px; }

.btn-sentenca { 
    display: inline-block; background: #000; color: #fff; padding: 20px; 
    text-decoration: none; text-transform: uppercase; letter-spacing: 2px; 
    font-weight: bold; font-size: 12px; transition: 0.4s; 
}
.btn-sentenca:hover { background: #333; letter-spacing: 3px; }

/* ==========================================================================
   6. ELEMENTOS DO FORMULÁRIO (SOFISTICAÇÃO)
   ========================================================================== */
.nota-juridica { 
    font-size: 12px; 
    color: #444; 
    margin-bottom: 30px; 
    border-left: 2px solid #000; 
    padding-left: 15px; 
}

label { 
    display: block; 
    font-weight: bold; 
    margin-top: 25px; 
    font-size: 16px; 
    letter-spacing: 1px; 
    color: #222; 
}

input[type="text"], 
input[type="tel"], 
input[type="email"], 
textarea, 
select, 
input[type="file"] { 
    width: 100%; 
    padding: 15px; 
    margin-top: 10px; 
    border: 1px solid #ccc; 
    border-radius: 0; 
    box-sizing: border-box; 
    font-family: 'Adobe Jenson Pro',serif;
    font-size: 18px; 
    background: #fff; 
    outline: none; 
}
select {
    -webkit-appearance: none; /* Chrome, Safari, Edge */
    -moz-appearance: none;    /* Firefox */
    appearance: none;         /* Estilo padrão */
    background-image: none !important;
    background-color: transparent;
    cursor: pointer;
    /* Adicione um padding à direita para o texto não colar na borda */
    padding-right: 15px !important; 
}
textarea {
    border-bottom: 2px solid #000; /* Linha de base que sugere importância */
}
/* Garante que no Internet Explorer a seta também suma */
select::-ms-expand {
    display: none;
}
input:focus, textarea:focus { border-color: #000; background: #fafafa; }

.secao-deliberativa { margin-top: 40px; background: #f4f4f4; padding: 25px; }
.check-item { display: flex; align-items: flex-start; margin-bottom: 18px; font-size: 16px; letter-spacing: 1px; }
.check-item input { margin-right: 15px; margin-top: 5px; cursor: pointer; }

button { 
    font-family: 'Adobe Jenson Pro',serif;
    width: 100%; background: #000; color: #fff; border: none; padding: 20px; margin-top: 50px; 
    cursor: pointer; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; font-weight: bold;
    transition: 0.4s; 
}
button:hover { background: #333; letter-spacing: 3px; }
/* Esconde o botão feio padrão do navegador */
.input-file-escondido {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
/* Correção para evitar rolagem lateral (Overflow) */
.input-file-escondido {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Botão de Upload Responsivo */
.btn-upload-custom {
    display: block; /* Garante que ele se comporte bem em telas estreitas */
    width: 100%;    /* Ocupa a largura disponível sem estourar */
    max-width: 320px; /* Limite elegante para não ficar largo demais em desktop */
    margin: 10px 0;
    padding: 15px 20px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    font-family: 'Adobe Jenson Pro',serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
	text-align: left;
    box-sizing: border-box; /* Fundamental para o padding não somar na largura */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-upload-custom:hover {
    background-color: #000;
    color: #fff;
}

/* Ajuste para o texto do nome do arquivo */
#nome-arquivo-selecionado {
    display: block;
    font-size: 16px;
    color: #585858;
    word-wrap: break-word; /* Se o nome do arquivo for longo, ele quebra a linha */
    max-width: 100%;
}
/* ==========================================================================
   7. SEÇÃO FAQ E CONFIANÇA
   ========================================================================== */
.faq-container { margin-top: 60px; border-top: 1px solid #dcdcdc; padding-top: 40px; }
.faq-container h2 { border-left: none; padding-left: 0; }
.faq-item {  
    padding: 20px 0;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(220, 220, 220, 0.4);
    border-bottom: 1px solid rgba(220, 220, 220, 0.4);
}

summary { font-weight: bold; font-size: 18px; letter-spacing: 1px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::after { content: '+'; font-size: 18px; color: #999; }
details[open] summary::after { content: '-'; }
details p { margin-top: 15px; font-size: 18px; color: #444; padding-left: 15px; border-left: 2px solid #000; }

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #000;
    gap: 10px;
}

.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item .icon { font-size: 18px; filter: grayscale(100%); opacity: 0.7; }

.trust-text { display: flex; flex-direction: column; text-align: left; }
.trust-text strong { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: #000; }
.trust-text span { font-size: 12px; color: #585858; letter-spacing: 0.5px; }

/* ==========================================================================
   8. RODAPÉ (FOOTER)
   ========================================================================== */
.site-footer { padding-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px;}
.footer-col h4 { font-size: 16px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; color: #000; }
.footer-col p.titulo-footer {
    font-size: 16px; /* O tamanho que o seu h4 tinha */
    font-weight: bold;
	color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}
.footer-col p, .footer-col ul { font-size: 16px; color: #585858; list-style: none; margin-bottom: 10px; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #585858; text-decoration: none; transition: 0.2s; }
.footer-col a:hover { color: #000; }

.footer-final { 
    text-align: center; border-top: 1px solid #dcdcdc; margin-top: 50px; 
    padding-top: 50px; font-size: 10px; color: #bbb; letter-spacing: 2px; 
}
.footer-final p { margin-bottom: 8px; }
.footer-legal-links { margin-top: 15px; font-size: 9px; letter-spacing: 1.5px; color: #bbb; }
.footer-legal-links a { text-decoration: none; color: #585858; transition: color 0.3s ease; }
.footer-legal-links a:hover { color: #000; }
/* Links das Colunas de Navegação do Rodapé */
.footer-col ul li a {
    color: #585858; /* Cinza suave para menor contraste */
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #000; /* Escurece apenas na interação */
}

/* Links Legais (Termos e Privacidade) no Fundo do Rodapé */
.footer-legal-links a {
    color: #bbb; /* Ainda mais discreto, quase fundindo-se ao texto base */
    text-decoration: none;
    border-bottom: 1px solid transparent; /* Sem linha por padrão */
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: #888;
    border-bottom: 1px solid #dcdcdc; /* Linha sutil aparece apenas no hover */
}
/* ==========================================================================
   RODAPÉ CORPORATIVO (PJ)
   ========================================================================== */
.gabinete-footer {
    background-color: #ffffff; /* Fundo limpo conforme o padrão do site */
    padding-top: 60px;
    border-top: 1px solid #dcdcdc;
    text-align: center;
}

.footer-content {
    max-width: 850px;
    margin: 0 auto;
}
.titular {
    font-family: 'Adobe Jenson Pro',serif;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 5px;
    color: #000;
}

.empresa-pj {
    font-family: 'Adobe Jenson Pro',serif;
    font-size: 12px;
    color: #585858;
    margin-bottom: 20px;
}

.empresa-pj a {
				color: #585858;
				text-decoration: none;
				font-weight: bold;
				border-bottom: 1px solid #dcdcdc;
				transition: all 0.3s ease;
			}
			
.empresa-pj a:hover {
				color: #333;
				border-bottom: 1px solid #333;
			}
.linha-discreta {
    width: 50px;
    height: 1px;
    background-color: #dcdcdc;
    margin: 20px auto;
}

.copyright {
    font-size: 12px;
    color: #585858;
    letter-spacing: 1px;
    margin-top: 30px;
}

/* Reutilizando a regra de links discretos que criamos */
.footer-legal-links a {
    font-size: 12px;
    color: #585858;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: #000;
}
/* Desativa o efeito do <br> em telas de Desktop */
@media (min-width: 769px) {
    br.mobile-only {
        display: none;
    }
}

/* Garante que ele funcione normalmente em Mobile (opcional, mas recomendado por clareza) */
@media (max-width: 768px) {
    br.mobile-only {
        display: inline;
    }
}
/* No Desktop, o span não faz nada, o texto flui normal */
.quebra-mobile {
    display: inline; 
}

/* No Mobile (telas até 768px) */
@media (max-width: 768px) {
    .quebra-mobile {
        display: block; /* Força o span a ocupar a linha toda, empurrando o resto para baixo */
        margin-top: 5px; /* Opcional: ajusta o respiro entre as linhas se desejar */
    }
}
/* 12. WHATSAPP FLUTUANTE */
.whatsapp-flutuante {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 150px;
    right: 10px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    animation: pulse-whatsapp 2s infinite;
    border: 2px solid rgba(255,255,255,0.1);
    padding: 12px;
}

.whatsapp-flutuante:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}
@media (max-width: 768px) {
.whatsapp-flutuante {
        width: 50px;
        height: 50px;
        bottom: 150px;
        right: 10px;
        font-size: 25px;
    }
}
/* ==========================================================================
   9. RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media screen and (max-width: 768px) {
    .site-container { padding: 30px; }
    .grid-servicos, .footer-grid { grid-template-columns: 1fr; }
    .trust-container { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    
    h1 { font-size: 24px; }
    .navbar { margin-bottom: 30px; }
    
    .menu-toggle { display: block; }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        border: 1px solid #dcdcdc;
        padding: 20px 0;
        z-index: 100;
        gap: 15px;
    }
    
    .nav-links.active { display: flex; }
    
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero-image-container { margin-top: 25px; }
}