body {
    background-color: #f5f8fa;
}
.header {
    background: linear-gradient(to right, #003366, #005bb5);
    padding: 1.5rem 1rem;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.highlight {
    color: #005bb5;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
}
.section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}
.section h2 {
    color: #005bb5;
    font-weight: bold;
    margin-bottom: 1rem;
    border-bottom: 2px solid #005bb5;
    display: inline-block;
    padding-bottom: 0.5rem;
}
.cta {
    background: #005bb5;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}
.cta h2 {
    margin-bottom: 1rem;
}
.cta a {
    text-decoration: none;
    background: white;
    color: #005bb5;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.cta a:hover {
    background: #003366;
    color: white;
}
footer {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #005bb5;
    color: white;
    text-align: center;
    font-size: 0.9rem;
}
.table-container {
    display: flex;
    justify-content: center; /* Centraliza a tabela horizontalmente */
}
.table {
    text-align: center; /* Centraliza o texto dentro das células */
}
.table th, .table td {
    vertical-align: middle; /* Centraliza o texto verticalmente */
}