/* Estilos do Formulário */
.f5-form-container {
    /* Reset de estilos do tema */
    all: initial;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.f5-form-container .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.f5-form-container form {
    background-color: #fff;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 86, 137, 0.1);
    transition: all 0.3s ease;
    padding: 2rem;
    margin-bottom: 2rem;
}

.f5-form-container form:hover {
    box-shadow: 0 15px 30px rgba(0, 86, 137, 0.15);
    transform: translateY(-2px);
}

.f5-form-container .form-label {
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    color: #005689 !important;
    display: block !important;
    font-size: 1rem !important;
}

.f5-form-container .form-control {
    padding: 0.875rem 1.25rem !important;
    border: 2px solid #e9ecef !important;
    border-radius: 0.75rem !important;
    transition: all 0.2s ease !important;
    font-size: 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background-color: #fff !important;
    color: #333 !important;
    height: auto !important;
    line-height: 1.5 !important;
}

.f5-form-container .form-control:focus {
    border-color: #005689 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 137, 0.15) !important;
    outline: none !important;
}

.f5-form-container .invalid-feedback {
    font-size: 0.875rem !important;
    color: #dc3545 !important;
    margin-top: 0.5rem !important;
    display: none !important;
}

.f5-form-container .form-control.is-invalid + .invalid-feedback {
    display: block !important;
}

.f5-form-container .posicoes-grid {
    margin: 1.5rem 0 !important;
    display: grid !important;
    gap: 1rem !important;
}

.f5-form-container .form-check {
    margin: 0.5rem !important;
    padding: 1.25rem !important;
    border: 2px solid #e9ecef !important;
    border-radius: 0.75rem !important;
    transition: all 0.2s ease !important;
    background-color: #fff !important;
    position: relative !important;
}

.f5-form-container .form-check:hover {
    border-color: #005689 !important;
    background-color: rgba(0, 86, 137, 0.02) !important;
}

.f5-form-container .form-check-input {
    cursor: pointer !important;
    margin-top: 0.3rem !important;
    margin-right: 0.5rem !important;
}

.f5-form-container .form-check-input:checked {
    background-color: #005689 !important;
    border-color: #005689 !important;
}

.f5-form-container .form-check-label {
    cursor: pointer !important;
    color: #344767 !important;
    font-weight: 500 !important;
    padding-left: 0.5rem !important;
    margin: 0 !important;
    font-size: 1rem !important;
}

.f5-form-container textarea.form-control {
    min-height: 120px !important;
    resize: vertical !important;
}

.f5-form-container .btn-primary {
    background-color: #005689 !important;
    border-color: #005689 !important;
    padding: 0.875rem 2.5rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.025em !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 4px 6px rgba(0, 86, 137, 0.2) !important;
    transition: all 0.2s ease !important;
    color: #fff !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    text-align: center !important;
    vertical-align: middle !important;
    cursor: pointer !important;
}

.f5-form-container .btn-primary:hover {
    background-color: #004670 !important;
    border-color: #004670 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 7px 14px rgba(0, 86, 137, 0.25) !important;
}

/* Modal específico do formulário */
.f5-form-container .modal {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.f5-form-container .modal-content {
    border: none !important;
    border-radius: 1rem !important;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 86, 137, 0.1) !important;
}

.f5-form-container .modal-header {
    border-bottom: 1px solid #e9ecef !important;
    padding: 1.5rem !important;
    background-color: #005689 !important;
    color: #fff !important;
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

.f5-form-container .modal-title {
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 1.25rem !important;
    margin: 0 !important;
}

.f5-form-container .modal .btn-close {
    color: #fff !important;
    opacity: 0.8 !important;
}

.f5-form-container .modal-body {
    padding: 1.5rem !important;
}

/* Estilos do Formulário */
.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.card {
    background-color: #fff;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 86, 137, 0.1);
    transition: all 0.3s ease;
    padding: 2rem;
    margin-bottom: 2rem;
}

.card:hover {
    box-shadow: 0 15px 30px rgba(0, 86, 137, 0.15);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #005689;
}

.form-control {
    padding: 0.875rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #005689;
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 137, 0.15);
    outline: none;
}

.form-control-lg {
    font-size: 1.125rem;
    padding: 1rem 1.25rem;
}

.invalid-feedback {
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.5rem;
}

.posicoes-grid {
    margin: 1.5rem 0;
    display: grid;
    gap: 1rem;
}

.form-check {
    margin: 0.5rem;
    padding: 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    background-color: #fff;
}

.form-check:hover {
    border-color: #005689;
    background-color: rgba(0, 86, 137, 0.02);
}

.form-check-input {
    cursor: pointer;
    margin-top: 0.3rem;
}

.form-check-input:checked {
    background-color: #005689;
    border-color: #005689;
}

.form-check-label {
    cursor: pointer;
    color: #344767;
    font-weight: 500;
    padding-left: 0.5rem;
    margin: 0;
    font-size: 1rem;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-primary {
    background-color: #005689;
    border-color: #005689;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 86, 137, 0.2);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #004670;
    border-color: #004670;
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(0, 86, 137, 0.25);
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.toast-container {
    z-index: 9999;
}

.toast {
    background-color: #fff;
    border: none;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.modal-content {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1.5rem;
}

.btn-secondary {
    background-color: #8392ab;
    border-color: #8392ab;
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.15s ease;
}

.btn-secondary:hover {
    background-color: #6c7c95;
    border-color: #6c7c95;
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

/* Responsividade */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem;
    }

    .form-check {
        margin: 0.25rem;
        padding: 0.75rem;
    }

    .btn-lg {
        padding: 0.75rem 2rem;
    }
}

/* Tela Cheia */
.f5-fullscreen {
    transition: all 0.3s ease;
    width: 100% !important;
    max-width: 100% !important;
}

.f5-fullscreen:fullscreen {
    background-color: #f0f0f1;
    padding: 20px;
}

.f5-fullscreen:fullscreen .wrap {
    max-width: none;
}

/* Container principal */
.f5-container {
    margin: 0 !important;
    padding: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Dashboard e Listagem */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.2s ease-in-out;
    margin-bottom: 1rem;
    width: 100% !important;
    max-width: 100% !important;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.card .display-4 {
    font-size: 2.5rem;
}

.card .progress {
    height: 4px;
    margin-top: 1rem;
}

.card .progress-bar {
    transition: width 1s ease;
}

.card .card-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card .card-title {
    color: #333;
}

.card .bi {
    opacity: 0.8;
}

.card-body {
    width: 100% !important;
}

/* Tabelas */
.table-responsive {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.table {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 0 !important;
}

.table > :not(caption) > * > * {
    padding: 1rem;
}

.table > thead {
    background-color: #f8f9fa;
}

.table > tbody > tr {
    transition: all 0.2s ease-in-out;
}

.table > tbody > tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

/* Grid System */
.row {
    margin-right: 0;
    margin-left: 0;
    width: 100% !important;
    max-width: 100% !important;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-auto, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, 
.col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-auto, .col-md, .col-md-1, 
.col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, 
.col-md-10, .col-md-11, .col-md-12, .col-md-auto, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, 
.col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, 
.col-sm-12, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, 
.col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto {
    padding-right: 10px;
    padding-left: 10px;
}

.container,
.container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* Checkboxes */
.form-check-input {
    cursor: pointer;
}

/* Badges e Ícones */
.badge {
    padding: 0.5em 0.8em;
    font-weight: 500;
}

.bi {
    vertical-align: -0.125em;
    line-height: 1;
    vertical-align: middle;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.15s ease-in-out;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
}

.btn .bi {
    font-size: 1.1em;
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Campo de Pesquisa */
.input-group .form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    z-index: 3;
}

.input-group {
    width: auto;
}

/* Modal */
.modal-content {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.modal-header {
    background-color: #f8f9fa;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    background-color: #f8f9fa;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.modal-dialog {
    max-width: 800px !important;
}

/* Paginação */
.pagination {
    margin: 0;
    gap: 0.25rem;
}

.page-link {
    padding: 0.375rem 0.75rem;
    color: #0d6efd;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: all 0.15s ease-in-out;
}

.page-link:hover {
    color: #0a58ca;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Responsividade */
@media (max-width: 782px) {
    .f5-container {
        padding: 10px !important;
    }
    
    .auto-fold #wpcontent {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .card .display-4 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.375rem 0.75rem;
    }

    .table-responsive {
        margin-bottom: 0;
    }

    .modal-dialog {
        margin: 0.5rem;
    }

    .card-body {
        padding: 1rem;
    }
}

@media screen and (min-width: 783px) {
    .auto-fold #wpcontent,
    .auto-fold #wpfooter {
        margin-left: 160px !important;
    }
}

/* Formulários */
.form-control {
    padding: 0.5rem 0.75rem;
}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.input-group .btn {
    padding: 0.5rem 0.75rem;
}

/* Lista de Detalhes */
.list-group-item {
    padding: 1rem;
    border-color: rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
    border-top: none;
}

.list-group-item:last-child {
    border-bottom: none;
}

/* Links */
a {
    color: #0d6efd;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}

a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

/* Toasts */
.toast-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 9999;
}

.toast {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

/* Alert */
.alert {
    border: none;
    border-radius: 0.5rem;
}

.alert-info {
    background-color: rgba(13, 202, 240, 0.1);
    color: #055160;
}

/* Estilo para validação de formulário */
.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: #198754;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.f5-form-container {
    padding: 1.5rem;
    margin: 1.5rem 0;
    background-color: #fff;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.outras-profissoes {
    transition: all 0.3s ease;
}

/* Toast container */
.toast-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 9999;
}

/* Reset e Estilos Base */
.f5-reset-styles {
    all: revert;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    line-height: 1.5 !important;
    color: #333 !important;
    box-sizing: border-box !important;
}

.f5-reset-styles * {
    box-sizing: border-box !important;
}

/* Container e Grid */
.f5-form-wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 2rem !important;
    background: #fff !important;
    border-radius: 1rem !important;
    box-shadow: 0 10px 20px rgba(0, 86, 137, 0.1) !important;
}

.f5-row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -15px !important;
    margin-bottom: 1.5rem !important;
}

.f5-col-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 15px !important;
}

.f5-col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding: 0 15px !important;
}

@media (max-width: 768px) {
    .f5-col-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Formulário */
.f5-form {
    width: 100% !important;
}

.f5-form-label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
    color: #005689 !important;
    font-size: 1rem !important;
}

.f5-form-control {
    display: block !important;
    width: 100% !important;
    padding: 0.875rem 1.25rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    color: #333 !important;
    background-color: #fff !important;
    border: 2px solid #e9ecef !important;
    border-radius: 0.75rem !important;
    transition: all 0.2s ease !important;
}

.f5-form-control:focus {
    border-color: #005689 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 137, 0.15) !important;
    outline: none !important;
}

/* Grid de Posições */
.f5-posicoes-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.75rem !important;
    margin: 1rem 0 !important;
    width: 100% !important;
}

@media (max-width: 992px) {
    .f5-posicoes-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .f5-posicoes-grid {
        grid-template-columns: 1fr !important;
    }
}

.f5-form-check-wrapper {
    width: 100% !important;
}

/* Checkboxes e Radios */
.f5-form-check {
    padding: 0.75rem 1rem !important;
    border: 2px solid #e9ecef !important;
    border-radius: 0.5rem !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    position: relative !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    background-color: #fff !important;
}

.f5-form-check:hover {
    border-color: #005689 !important;
    background-color: rgba(0, 86, 137, 0.02) !important;
}

.f5-form-check-input {
    margin: 0 0.5rem 0 0 !important;
    flex-shrink: 0 !important;
}

.f5-form-check-input:checked {
    background-color: #005689 !important;
    border-color: #005689 !important;
}

.f5-form-check-label {
    color: #333 !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
}

/* Feedback de Validação */
.f5-invalid-feedback {
    display: none !important;
    color: #dc3545 !important;
    font-size: 0.875rem !important;
    margin-top: 0.5rem !important;
}

.f5-form-control.is-invalid {
    border-color: #dc3545 !important;
}

.f5-form-control.is-invalid + .f5-invalid-feedback {
    display: block !important;
}

/* Botões */
.f5-btn {
    display: inline-block !important;
    font-weight: 600 !important;
    text-align: center !important;
    vertical-align: middle !important;
    cursor: pointer !important;
    padding: 0.875rem 2.5rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    border-radius: 0.75rem !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

.f5-btn-primary {
    color: #fff !important;
    background-color: #005689 !important;
    border: 2px solid #005689 !important;
    box-shadow: 0 4px 6px rgba(0, 86, 137, 0.2) !important;
}

.f5-btn-primary:hover {
    background-color: #004670 !important;
    border-color: #004670 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 7px 14px rgba(0, 86, 137, 0.25) !important;
}

.f5-btn-secondary {
    color: #fff !important;
    background-color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.f5-btn-secondary:hover {
    background-color: #5a6268 !important;
    border-color: #5a6268 !important;
}

/* Modal */
.f5-modal-dialog {
    max-width: 500px !important;
    margin: 1.75rem auto !important;
}

.f5-modal-content {
    background-color: #fff !important;
    border: none !important;
    border-radius: 1rem !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.f5-modal-header {
    background-color: #005689 !important;
    color: #fff !important;
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
    padding: 1.5rem !important;
    border-bottom: none !important;
}

.f5-modal-title {
    margin: 0 !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #fff !important;
}

.f5-modal-body {
    padding: 1.5rem !important;
}

.f5-modal-footer {
    padding: 1.5rem !important;
    border-top: 1px solid #e9ecef !important;
}

.f5-text-center {
    text-align: center !important;
}

/* Links */
.f5-link {
    color: #005689 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.f5-link:hover {
    text-decoration: underline !important;
}

/* Utilitários */
.f5-mt-3 {
    margin-top: 1rem !important;
}

.f5-mb-3 {
    margin-bottom: 1rem !important;
}
