:root {
    --primary-color: #053e88; /* Azul */
    --secondary-color: #333; /* Cor escura para o texto */
    --background-light: #f9f9f9;
    --white: #fff;
    --accent-green: #34A853; /* Verde para botões */
  }
  
/* Seção de Relatórios */
.relatorios {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}

.relatorios h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Estilizando cada relatório */
.relatorio {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #ddd;
    padding: 15px 0;
    gap: 20px;
}

.relatorio:last-child {
    border-bottom: none;
}

/* Imagens */
.relatorio img {
    width: 100px;
    height: 130px;
    object-fit: cover;
    border-radius: 4px;
}

/* Texto */
.texto {
    flex: 1;
}

.texto h3 {
    font-size: 18px;
    color: #003366;
}

.texto p {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.texto a {
    display: inline-block;
    margin-top: 10px;
    color: #003366;
    font-weight: bold;
    text-decoration: none;
}

.texto a:hover {
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
    .relatorio {
        flex-direction: column;
        align-items: flex-start;
    }

    .relatorio img {
        width: 100%;
        height: auto;
    }
}
