/* Define o PNG como fundo geral do site */
body {
    background-image: url('../images/TAJ_fundo_beje.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

/* Torna o header semi-transparente (75% de opacidade branca) */
header, .header, .site-header {
    background-color: rgba(255, 255, 255, 0.75) !important;
    background-image: none !important; 
}

/* Torna o footer semi-transparente (70% de opacidade preta) */
footer, .footer, .site-footer {
    background-color: rgba(255, 255, 255, 0.75) !important;
    background-image: none !important;
}

/* Altera a cor do texto geral, títulos e etiquetas no header */
header, 
.header, 
.site-header,
header p,
header span,
header h1, header h2, header h3 {
    color: #002B24 !important;
}

/* Altera a cor de todos os links e itens de menu no header */
header a, 
.header a, 
.site-header a,
.navbar-brand,
.nav-link {
    color: #002B24 !important;
}

/* Opcional: Define uma leve transparência ao passar o rato (hover) para manter o feedback visual */
header a:hover,
.header a:hover,
.site-header a:hover,
.nav-link:hover {
    color: #002B24 !important;
    opacity: 0.8;
}

* Altera a cor do texto geral, parágrafos, listas e títulos no footer */
footer, 
.footer, 
.site-footer,
footer p,
footer span,
footer li,
footer h1, footer h2, footer h3, footer h4, footer h5 {
    color: #002b24 !important;
}

/* Altera a cor de todos os links no footer */
footer a, 
.footer a, 
.site-footer a {
    color: #002b24 !important;
}

/* Opcional: Feedback visual ao passar o rato (hover) nos links do footer */
footer a:hover,
.footer a:hover,
.site-footer a:hover {
    color: #002b24 !important;
    opacity: 0.8;
}
