@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* Estilos base para el navbar */
.profesionales__content {
    padding: 1rem 0;
}

.profesionales__navbar {
    display: flex;
    padding-left: 0 !important;
    list-style: none;
}

.profesionales__item:not(:first-child) {
    margin: 0 1rem;
}

.profesionales__link {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    color: #245065;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

/* Efecto hover: línea animada debajo del enlace */
.profesionales__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #26C4C3;
    transition: width 0.3s ease;
}

.profesionales__link:hover {
    color: #26C4C3;
}

.profesionales__link:hover::after {
    width: 100%;
}

.profesionales__link.active {
    color: #26C4C3;
}

.profesionales__link.active::after {
    width: 100%;
}