.menu{
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 40px; 
    z-index: 1000;
}
.menu a{
    text-decoration: none;
    font-size: 1.1rem;
    color: white;
    padding: 8px 15px;
    background: rgba(51, 51, 51, 0.6);
    border-radius: 5px;
    position: relative;
}
.menu a:hover{
    background: rgba(51, 51, 51, 0.9);
    transform: scale(1.05);
}
.menu a.activo::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;          /* espacio debajo del botón */
    width: 100%;
    height: 3px;
    background: white;   /* color de la rayita */
    border-radius: 2px;
}