/* --- Conteúdo de: sigraweb-base.css (Estilos Globais do Sigraweb) --- */

:root {
    --roxo-claro: #F5F0FF; /* Fundo claro da coluna de informação */
    --roxo-escuro: #1A004B; /* Fundo do formulário / texto principal escuro */
    --roxo-vibrante: #6A00FF; /* Cor de destaque (botões, links) */
    --azul-marinho-fundo: #000033; /* Fundo principal escuro (cor do overlay) */
    --cinza-texto: #cccccc;
    --borda-input: #44376C; 
}

/* Reset Básico e Fundo do Corpo */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: var(--roxo-vibrante); /* Cor de fundo geral do body */
    color: white; /* Cor de texto padrão para o fundo escuro */
    min-height: 100vh;
     background-image: url("../img/fundo.png"); 
}

/* --- HEADER (Replicando o Header da Imagem) --- */
.header {
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky; 
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
	height: 37px;
	object-fit: contain;
	margin-bottom: 5px;
	margin-left: 5px;
	width: 141px;
}

.logo a {
    font-weight: bold;
    font-size: 20px;
    color: var(--roxo-vibrante); /* Logo na cor roxa */
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--roxo-escuro); /* Links do menu em roxo escuro */
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--roxo-vibrante);
}

.btn-entrar {
    background-color: transparent;
    color: var(--roxo-vibrante);
    border: 1px solid var(--roxo-vibrante);
    padding: 8px 18px;
    border-radius: 20px; /* Borda mais arredondada */
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.btn-entrar:hover {
    background-color: var(--roxo-vibrante);
    color: white;
}

/* --- FOOTER (Rodapé Preto da Sigraweb) --- */
.footer {
    background-color: black;
    color: white;
    padding: 20px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-content .logo {
    color: white;
}

.footer-content p {
    color: var(--cinza-texto);
    font-size: 14px;
    margin: 0;
}

.social-footer a {
    color: white;
    margin-left: 15px;
    font-size: 18px;
    transition: color 0.3s;
}
.social-footer a:hover {
    color: var(--roxo-vibrante);
}

/* Responsividade do Header e Footer (Manter) */
@media (max-width: 768px) {
    .nav, .btn-entrar { display: none; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-content > * { margin-bottom: 10px; }
}