﻿/* ===================================================
   MenuNavegacion
   =================================================== */
.MenuNavegación {
    padding: 1rem 0rem 1rem 0rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
}

.MenuNavegación-HacerloHorizontal {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    box-sizing: border-box;
    justify-content: space-around; /* o center */
    padding: 0rem 0rem 0rem 0rem;
}


.MenuNavegación-ColoAnimacion {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    white-space: normal;
    text-decoration: none;
    color: white;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.MenuNavegación-ColoAnimacion::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: white;
    transition: width 0.3s ease;
}

.MenuNavegación-ColoAnimacion:hover::after,
.MenuNavegación-ColoAnimacion.active::after {
    width: 100%;
}

.MenuNavegación-SinAnimacion {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    white-space: normal;
    text-decoration: none;
    color: white;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.MenuNavegación-SinAnimacion::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: white;
    transition: width 0.3s ease;
}