/* --- ESTILOS GERAIS E RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2 {
    font-weight: 700;
    color: #1a2a4c; /* Um azul escuro, cor que transmite confiança */
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

section {
    padding: 80px 0;
}

.cta-button {
    display: inline-block;
    background-color: #ff6f00; /* Um laranja vibrante, que chama a atenção */
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e66000;
}

/* --- CABEÇALHO --- */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-sf {
    width: 150px; 
}

.main-nav a {
    color: #333;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
}

.main-nav a.active {
    color: #ff6f00;
}

/* --- SEÇÃO HERÓI (IMAGEM PRINCIPAL) --- */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/fundo.png'); 
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 200px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

/* --- SEÇÃO SOBRE NÓS --- */
#sobre {
    background-color: #f9f9f9;
}

/* --- SEÇÃO PRODUTOS --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.product-card h3 {
    color: #1a2a4c;
    margin-bottom: 10px;
}

/* --- SEÇÃO ONDE ENCONTRAR --- */
#onde-encontrar {
    background-color: #1a2a4c;
    color: #fff;
    text-align: center;
}

#onde-encontrar h2, #onde-encontrar p {
    color: #fff;
}

#onde-encontrar p {
    margin-bottom: 30px;
}

/* --- RODAPÉ --- */
.main-footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}

.logo-footer {
    width: 180px;
    margin-bottom: 30px;
}

.main-footer h2 {
    color: #fff;
}

.main-footer p {
    margin-bottom: 10px;
}

.main-footer a {
    color: #ff6f00;
    text-decoration: none;
}

.footer-info {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 30px;
}

/* --- ESTILOS PARA A PÁGINA SOBRE NÓS --- */

.page-hero {
    background-color: #f9f9f9;
    text-align: center;
    padding-top: 140px; /* Espaço para o cabeçalho fixo */
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.1rem;
    color: #555;
}

.missao-visao-valores {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9; 
}

.missao-visao-valores .section-title {
    color: #002D62; 
    margin-bottom: 10px;
}

.missao-visao-valores .section-subtitle {
    margin-bottom: 40px;
    color: #555;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mvv-card img {
    height: 80px;
    margin-bottom: 20px;
}

.mvv-card h2 {
    font-size: 2rem;
    color: #002D62;
    margin-bottom: 15px;
}

.mvv-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.contrato-social-section h2 {
    text-align: center;
    font-size: 2.5rem;
}

.contrato-social-section .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

#nossos-valores {
    padding-top: 60px;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.valor-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.valor-card h3 {
    font-size: 1.2rem;
    color: #1a2a4c;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6f00;
    display: inline-block;
}

.valor-card p {
    font-size: 0.95rem;
    color: #444;
    flex-grow: 1;
}

.valor-numero {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6f00;
    line-height: 1;
    margin-bottom: 15px;
}

/* --- ESTILOS ADICIONAIS PARA PRODUTOS --- */
.section-title {
    font-size: 2.8rem;
    padding-bottom: 20px;
    border-bottom: 3px solid #ff6f00;
    display: inline-block;
    margin-bottom: 40px;
}

.product-listing {
    padding-bottom: 40px;
}

.categoria-produtos {
    font-size: 1.8rem;
    color: #444;
    width: 100%;
    text-align: left;
    padding-bottom: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    display: block;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.category-card img {
    max-width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 5px;
}

.category-card h3 {
    font-size: 1.8rem;
    color: #1a2a4c;
    margin-bottom: 10px;
}

.category-card p {
    margin-bottom: 20px;
}

.category-link {
    font-weight: 600;
    color: #fff;
    background-color: #ff6f00;
    padding: 10px 20px;
    border-radius: 5px;
}

/* --- ESTILOS PARA A PÁGINA DO RELATÓRIO E PRIVACIDADE --- */
.report-container, .privacy-content {
    width: 100%;
    max-width: 850px; 
    margin: 0 auto; 
    padding-top: 20px;
    padding-bottom: 40px;
}

.report-image {
    display: block; 
    width: 100%; 
    max-width: 100%;
    height: auto; 
    margin-bottom: 40px; 
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
}

/* Estilos para os links dos relatórios PDF - ALTERADO */
.report-links {
    list-style: none;
    padding: 20px 0;
    margin: 20px auto;
    max-width: 800px;
}
.report-links li {
    margin-bottom: 20px;
    text-align: center;
}
.report-links a {
    display: inline-block;
    background-color: #6c757d; /* Cor cinza, mais neutra */
    color: #ffffff;
    padding: 10px 22px; /* Botão menor */
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500; /* Peso da fonte normal */
    font-size: 0.9em; /* Fonte menor */
    transition: background-color 0.3s ease;
}
.report-links a:hover {
    background-color: #5a6268; /* Cinza mais escuro no hover */
}

/* Estilos para a seção de esclarecimento - ALTERADO */
#esclarecimento-mte {
    background-color: #fffbeb; /* Fundo amarelo claro para destaque */
    border-left: 5px solid #ffca2c; /* Borda lateral amarela/dourada */
    padding: 40px 0;
    margin-top: 20px;
    border-top: none; /* Remove bordas anteriores */
    border-bottom: none; /* Remove bordas anteriores */
}
.esclarecimento-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: justify;
}
.esclarecimento-container h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5em;
    color: #333;
}
.esclarecimento-container p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.privacy-content h2 {
    font-size: 1.8rem;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.privacy-content p, .privacy-content li {
    color: #555;
    text-align: justify;
    margin-bottom: 15px;
}

/* --- AJUSTES NO RODAPÉ --- */
.footer-legal-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 15px 30px; 
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
    text-decoration: underline;
}

.developer-signature {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
}

/* --- ESTILOS PARA PÁGINA DE LOGIN E RELATÓRIOS --- */
.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
}

.login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-logo {
    width: 150px;
    margin: 0 auto 20px auto;
}

.login-title {
    font-size: 1.5rem;
    color: #1a2a4c;
    font-weight: 600;
    margin-bottom: 25px;
}

.login-form .input-group {
    text-align: left;
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.login-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.login-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #ff6f00;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #e66000;
}

.error-message {
    color: #d93025;
    font-size: 0.9rem;
    margin-bottom: 15px;
    min-height: 20px;
}

.report-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.report-card {
    display: block;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.report-card h3 {
    font-size: 1.5rem;
    color: #1a2a4c;
    margin-bottom: 10px;
}

.report-card p {
    color: #555;
    margin-bottom: 20px;
}

.report-link {
    font-weight: 600;
    color: #ff6f00;
}