/* Botón Regreso a Clases - Combinación Amarilla/Naranja */
.menu-regreso-clases a {
    background-color: #f49516 !important; /* Fondo Naranja */
    color: #fce807 !important;            /* Texto Amarillo inicial */
    
    /* Fuente y estilo */
    font-family: 'KillJoy', sans-serif;
    font-size: 15px !important;
    font-weight: 900;
    text-transform: uppercase;
    
    /* Borde del texto en color Naranja */
    text-shadow: 
        -1.5px -1.5px 0 #f49516,  
         1.5px -1.5px 0 #f49516,
        -1.5px  1.5px 0 #f49516,
         1.5px  1.5px 0 #f49516,
         0px 0px 4px rgba(0,0,0,0.3);
         
    /* Apariencia del botón */
    border-radius: 4px;
    padding: 10px 22px !important;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none !important;
    text-decoration: none; /* Por si las moscas, para quitar el subrayado */
}

/* Efecto Hover - AQUÍ ESTÁ EL CAMBIO */
.menu-regreso-clases a:hover {
    background-color: #d88414 !important; /* Naranja más oscuro */
    color: #ffffff !important;            /* Texto BLANCO al pasar el mouse */
    transform: scale(1.05);               /* Un poquito más de escala para que se note el movimiento */
    
    /* Mantenemos el borde oscuro para que el blanco resalte sobre el naranja */
    text-shadow: 
        -1.5px -1.5px 0 #d88414,  
         1.5px -1.5px 0 #d88414,
        -1.5px  1.5px 0 #d88414,
         1.5px  1.5px 0 #d88414,
         0px 4px 6px rgba(0,0,0,0.2);
}
