@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Open Sans", sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.container2 {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
   
}

header h1 {
    font-size: 2.5em;
    color: #007bff;
}

header h4 {
    font-size: 1.2em;
    color: #555;
}

.about p {
    line-height: 1.6;
    margin-bottom: 20px;
}

h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #007bff;
    text-align: center;
}

/* Estilos para a tabela de PDFs */
.file-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.file-table th,
.file-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    font-weight: bold; /* Adicionando negrito */
    
}

.file-table th {
    background-color: #007bff;
    color: white;
    text-align: center;
    font-weight: 600;
}

.file-table td a {
    color: #007bff;
    text-decoration: none;
}

.file-table td a:hover {
    text-decoration: underline;
}
