html {
    scroll-behavior: smooth;
}

.nav-link {
    position: relative;
    transition: color 0.3s;
}

.nav-link.active {
    color: #ec4899;
    font-weight: bold;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ec4899;
    animation: underline 0.4s ease-out forwards;
}

@keyframes underline {
    0% {
        width: 0;
        left: 50%;
    }

    100% {
        width: 100%;
        left: 0;
    }
}

.fade {
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.fade.show {
    opacity: 1;
}

/* Scrollbar rosa corporativo */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fce7f3;
    /* un rosado clarito como fondo */
}

::-webkit-scrollbar-thumb {
    background-color: #ec4899;
    /* rosado principal */
    border-radius: 6px;
    border: 2px solid #fce7f3;
    /* borde para integrarlo con el track */
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #ec4899 #fce7f3;
}

#mensajeExito.opacity-0 {
    opacity: 0;
}