body {
    margin: 0px;
    font-family: 'Source Sans 3', sans-serif;
}

header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px -50px 75px 30px rgba(0, 0, 0, 0.99);
}

#contenido {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.div-header {
    display: flex;
    align-items: center;
}

/* Logo */
#logo {
    width: 250px;
    height: 100px;
}

#logo-header {
    width: 250px;
}

/* Menú */
#menu {
    flex-grow: 1;
    justify-content: center;
}

.menu-lista {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.menu-lista li a {
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 20px;
    padding: 5px 10px;
    transition: color 0.3s ease;
    line-height: 100px;
}

.menu-lista li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #f2d6c3;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.menu-lista li a:hover::after {
    transform: scaleX(1);
}

.menu-lista li a.activo {
    color: black;
    font-weight: bold;
}

.menu-lista li a.activo::after {
    transform: scaleX(1);
}


/* Login */
#login {
    height: 100px;
}

.enlace-acceso {
    color: black;
    font-size: 22px;
    text-decoration: none;
}
#enlace-acceso:visited {
    color: black;
}

