/* --- ESTILOS DO MENU E HEADER --- */

/* Header Principal */
.header { width: 100%; background: var(--cor-branco); border-bottom: 1px solid var(--cor-borda); position: sticky; top: 0; z-index: 100; }
.header .container { display: flex; justify-content: space-between; align-items: center; padding: 8px 20px; }
.logo img { height: 45px; mix-blend-mode: multiply; display: block; }

/* --- ESTILO DOS LINKS COM LINHA DESLIZANTE --- */
.nav-desktop { display: flex; gap: 20px; }
.nav-desktop a, 
.menu-links a { text-decoration: none; text-transform: uppercase; position: relative; padding-bottom: 4px; transition: var(--transicao); }

/* Configurações específicas Desktop */
.nav-desktop a { color: var(--cor-texto); font-size: 13px; font-weight: 700; }

/* Configurações específicas Mobile */
.menu-links a { color: #fff; font-size: 1.5rem; font-weight: 800; }

/* A Linha (Pseudoelemento, inicio do zero) */
.nav-desktop a::after,
.menu-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; transition: width 0.3s ease; }

/* Cor da linha no Desktop */
.nav-desktop a::after { background-color: var(--cor-marca); }

/* Cor da linha no Mobile */
.menu-links a::after { background-color: var(--cor-ouro); }

/* Efeito Hover (Onde a mágica acontece, linha deslizante) */
.nav-desktop a:hover::after, 
.menu-links a:hover::after { width: 100%; }

/* Botão Hamburguer (☰) */
.menu-toggle { cursor: pointer; font-size: 28px; display: none; color: var(--cor-marca); background: none; border: none; }

/* --- MENU FULLSCREEN MOBILE --- */
/* Fade Suave sem movimento */
.menu-fullscreen { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--cor-marca); display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 999; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }

/* Classe ativada via JavaScript */
.menu-fullscreen.active { opacity: 1; visibility: visible; }
.menu-close { position: absolute; top: 20px; right: 30px; font-size: 40px; color: #fff; cursor: pointer; }
.menu-links { display: flex; flex-direction: column; gap: 30px; text-align: center; }

/* --- FOOTER --- */
.site-footer { color: var(--cor-texto-suave); padding: 60px 20px 30px; }
.footer-container { max-width: var(--container-max); margin: 0 auto; padding-top: 20px; border-top: 1px solid var(--cor-prata); display: flex; justify-content: space-between;  flex-wrap: wrap; gap: 40px; }
/* Coluna da Marca */
.footer-brand { flex: 1; min-width: 300px; }
.logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.logo-text { font-size: 1.4rem; font-weight: 700; }
.brand-description { line-height: 1.6; margin-bottom: 15px; max-width: 400px; }
.footer-text { margin-bottom: 15px; }

/* Navegação */
.footer-nav { flex: 1; min-width: 250px; margin-top: 10px; }
.footer-nav a, .footer-text a { text-decoration: none; color: var(--cor-areia); position: relative; font-weight: 700; transition: var(--transicao); }
.footer-nav a::after, .footer-text a::after { background-color: var(--cor-prata); content: ''; position: absolute; bottom: -8px; left: 0; width: 0; height: 2px; transition: width 0.3s ease; }
.footer-nav a:hover::after, .footer-text a:hover::after { width: 100%; }
.nav-title { font-size: 1.0rem; margin-bottom: 20px; }
.nav-columns { display: flex; gap: 60px; }
.nav-list { list-style: none; padding: 0; }
.nav-list li { margin-bottom: 12px; }


/* Disclaimer e Copyright */
.footer-bottom { margin-top: 20px; }
.bottom-container { color: var(--cor-prata);  border-top: 1px solid var(--cor-prata); padding-top: 20px; max-width: var(--container-max); margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; font-size: 0.65rem; }
.disclaimer { max-width: 600px; line-height: 1.5; font-size: 0.75rem; font-style: italic;}
.copyright-info { color: var(--cor-prata); text-align: right; display: flex; flex-direction: column; }

/* --- RESPONSIVIDADE DO MENU --- */
@media (max-width: 992px) {
    .menu-toggle { display: block; }
    .nav-desktop { display: none; }
}
/* --- RESPONSIVIDADE DO FOOTER --- */
@media (max-width: 768px) {
    .footer-container { flex-direction: column; }
    .bottom-container { flex-direction: column; align-items: flex-start; gap: 20px; }
    .copyright-info { text-align: left; }
}
