.section-title-container {
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 600;
    color: #1351B4;
    margin: 0;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    font-weight: normal;
    text-align: center;
    margin: 1rem auto 0;
    width: 100%;
}

.section-title:after {
    display: none;
}


.btn-ver-todos {
    position: relative;
    right: 0;
    top: 0rem;
    background: transparent !important;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600;
    font-size: 0.875rem;
    color: #114293 !important;
    text-decoration: none;
    border: 1.5px solid #114293 !important;
    border-radius: 24px !important;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-ver-todos:hover {
    background: rgb(0, 72, 180) !important;
    color: white !important;
    border-color: #0d47a1 !important;
    text-decoration: none;
}

/* Garantir que o botão mantenha o estilo em diferentes estados */
.btn-ver-todos:active,
.btn-ver-todos:focus,
.btn-ver-todos:visited {
    border-radius: 24px !important;
    text-decoration: none;
    color: #114293 !important;
}

.btn-ver-todos:hover:active,
.btn-ver-todos:hover:focus,
.btn-ver-todos:hover:visited {
    color: white !important;
}

@media (max-width: 991px) {
    .btn-ver-todos {
        position: static;
        margin: 1rem auto;
        display: block;
        text-align: center;
    }
}


@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .btn-ver-todos {
        width: 100%;
    }
}