@charset "utf-8";
/* CSS Document */
.flecha-flotante {
    
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 50%);
    
    align-items: center;
    justify-content: center;
}

/* Ajustar la flecha */
.flecha-flotante i {
    font-size: 25px; /* Tamaño más pequeño */
    color: white;
    transition: color 0.3s ease-in-out;
}

/* Estilo para "Ver Maestrías" con el recuadro */
.flecha-flotante h3 {
	display: inline-block;
    color: white;
    border: 2px solid orange; /* Borde naranja */
    padding: 15px 10px;
    background-color: rgba(11,68,51,0.85);
    margin-top: 15px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

/* Cambio de color del fondo en hover */
.flecha-flotante h3:hover {
    background: orange;
    color: white;
}

@media (max-width: 768px) { /* Oculta en pantallas de 768px o menores (tablets y móviles) */
    .flecha-flotante {
        display: none;
    }
}

@media (min-width: 951px) and (max-width: 1505px) {
    .main-menu li {
        display: none;
    }
}

.imagen-circular {
    width: 250px;
    aspect-ratio: 1;
    clip-path: circle(50%);
    /* ...otros estilos... */
}
.contenedor-docente {
    position: relative;
    display: inline-block;
    overflow: hidden;
     /*width: 250px; Ajusta según el tamaño deseado */
    text-align: center;
    /*border-radius: 10px;*/
    transition: transform 0.3s ease-in-out;
}

.contenedor-docente img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.contenedor-docente:hover {
    transform: scale(1.05); /* Efecto de zoom leve */
}

.overlay-docente {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 68, 51, 0.85);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    padding: 35px;
    font-size: 14px;
    line-height: 1.5;
    /*border-radius: 10px;*/
}

.contenedor-docente:hover .overlay-docente {
    opacity: 1;
}
