html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    background-color: #f8f9fa; /* Color de fondo claro */
}

.container-fluid {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1%; /* Mueve el contenedor un poco más arriba */
    padding-bottom: 5%; /* Ajusta el espaciado en la parte inferior si es necesario */
}


.card {
    border-radius: 1rem; /* Bordes redondeados para el diseño */
    background: linear-gradient(145deg, #e2e8f0, #ffffff); /* Fondo con degradado */
    width: 200%; /* Asegura que la tarjeta ocupe todo el ancho del contenedor */
    max-width: 700px; /* Ancho máximo de la tarjeta aumentado */
    padding: 2rem; /* Espaciado interno de la tarjeta */
    text-align: center; /* Centra el texto dentro de la tarjeta */
}

.btn-primary {
    background-color: #004f45; /* Color del botón */
    border: none; /* Sin borde */
    border-radius: 0.5rem; /* Bordes redondeados */
    font-size: 1.4rem; /* Tamaño de la fuente */
    transition: background-color 0.3s; /* Transición suave para el color de fondo */
    padding: 1rem 3rem; /* Espaciado interno del botón ajustado */
    width: 100%; /* Asegura que el botón ocupe el ancho del contenedor */
    max-width: 500px; /* Ancho máximo del botón ajustado */
    display: block; /* Asegura que el botón use el ancho definido */
    margin: 0 auto; /* Centra el botón horizontalmente */
}


.btn-primary:hover {
    background-color: #118825; /* Color del botón al pasar el mouse */
}

.img-fluid {
    max-width: 40%; /* Tamaño máximo del logo reducido */
    height: auto; /* Ajuste automático de la altura */
}

.card-title {
    font-size: 2.5rem; /* Tamaño de la fuente del título */
    color: #333; /* Color del texto */
    margin-bottom: 0.5rem; /* Reduce el espacio debajo del h1 */
}

.card-text h2 {
    font-size: 1.5rem; /* Tamaño de la fuente del h2 */
    color: #333; /* Color del texto */
    margin-top: 0.5rem; /* Reduce el espacio encima del h2 */
}

.logo-small {
    max-width: 30%; /* Tamaño máximo del logo reducido aún más */
    height: auto; /* Ajuste automático de la altura */
}

.card-text h4 {
    font-size: 1.5rem; /* Tamaño de la fuente del h4 */
    color: #333; /* Color del texto */
    margin-top: 0; /* Elimina el espacio encima del h4 */
}

/* --------------------------------- Mapa --------------------------------- */

.active-button {
    /* Estilo para el botón activo */
    background-color: #007bff; /* Color de fondo del botón activo */
    color: white; /* Color del texto del botón activo */
    transform: scale(1.05); /* Escala para el efecto de resaltado */
}

.mapTitle {
    position: absolute;
    left: 40%;
    top: 6%;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    display: flex;
    justify-content: center;
    color: #012C26;
}

.mapImage {
    width: 532px; 
    height: 491px;
}

.contMapButton {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    padding: 0px;
    margin: 1px auto 10px;
    justify-content: center;
    
    width: 276px;
    height: 32px;
}

.mapButton {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 2px;
    width: 39.33px;
    height: 32px;
    background: #D9D9D9;
    border-radius: 8px;
    border: none;
    
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: rgba(0, 68, 59, 0.67);
}

.mapButton:hover {
    background: rgba(3, 98, 85, 0.86);
    
    color: #FFFFFF;
}

.buttonInPoint {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 0 auto 15px;
    
    width: 362px;
    height: 57px;
    
    background: #00443B;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.1px;
    
    color: #FFFFFF;
}

/* Menu overlay de pisos */
#menuOverlay{
    display: none; /* Ocultar por defecto */
    position: fixed; /* Fijar en la pantalla */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25); /* Fondo semi-transparente */
    z-index: 1000; /* Asegúrate de que esté encima de otros elementos */ 
}

.menu {
  display: flex;
  flex-direction: column;
  position: fixed; 
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%); 
  width: 30%;
  min-width: 300px;
  max-width: 400px;
  background: rgba(0, 68, 59, 0.92);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 8px 0;
}

/* Menu list */
.menu-list {
  display: flex;
  flex-direction: column;
}

/* Menu list item */
.menu-list-item {
  width: 100%;
  height: 56px;
  background-color: transparent; /* Puedes cambiarlo si quieres un color de fondo */
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: space-between;
  border: 1px solid transparent;
  transition: background-color 0.3s;
}

.menu-list-item:hover {
  background-color: rgba(255, 255, 255, 0.1); /* Efecto hover opcional */
}

.state-layer {
  width: 25px;
  height: 56px;
  opacity: 0.38;
}

.content {
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
}

.label-text {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #FEF7FF;
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background-color: #79747E;
}

.dividerMain {
  width: 100%;
  height: 3px;
  background-color: #79747E; 
}

/* ---------------------------------  Menu overlay de carreras ---------------------------------  */
#overlayCarreras{
    display: none; /* Ocultar por defecto */
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.363); 
    z-index: 1000; 
}

#contenedorTituloCarrera {
    margin-top: 13px;
    margin-bottom: 13px;
}

#overlayTituloCarrera {
    font-size: 24px;
}


/* ---------------------------------  API de reproductor youtube en mapa interactivo  --------------------------------- */
#contenedorPlayer {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.425);
    z-index: 1000;
}

/* imagen con el codigo QR */
#contenedorPlayer img {
    display: flex;
    position: fixed; 
    width: 200px;
    height: 200px;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%); 
    border-radius: 20px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
}

/* Overlay para evitar clicks encima del player */
#overlayPlayer {
    display: flex;
    flex-direction: column;
    position: fixed; 
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 40%;
    height: 65%;
    min-width: 300px;
    max-width: 700px;
    min-height: 300px;
    max-height: 550px;
    padding: 8px 0;
    z-index: 1000;
}

/* contenedor del reproductor */
#player{
    display: flex;
    flex-direction: column;
    position: fixed; 
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 40%;
    height: 65%;
    min-width: 300px;
    max-width: 700px;
    min-height: 300px;
    max-height: 550px;
    border-radius: 20px;
    padding: 8px 0;
}

#player iframe {
    border: none;
}


/* Boton de play/pausa */
#playPausaBtn {
    display: flex;
    position: fixed; 
    justify-content: center;
    align-items: center;
    top: 64%;
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 30%;
    height: 20%;
    min-width: 50px;
    max-width: 70px;
    min-height: 50px;
    max-height: 60px;
    border-radius: 20px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
    z-index: 1001;
}


/* --------------------------------- Uso general --------------------------------- */
.botonIcono {
    width: 36px; 
    height: 36px;
    padding: 4px;
    float: right;
    background: #00443B;
    border-radius: 100px;
}

.botonIntegrantes {
    width: 36px; 
    height: 36px;
    padding: 4px;
    float: left;
    background: #00443B;
    border-radius: 100px;
}

.logoSmall {
    width: 90px; 
    height: 90px;
    float: left;
}

/* Efecto ease out de transicion a 200 ms */
.ease-out-transition {
    opacity: 0;
    transform: translateY(-300px); /* Inicialmente desplazado desde abajo */
    transition: all 500ms ease-out;
}

/* Efecto ease out de transicion a 200 ms - Hacia arriba */
.ease-out-transition-UP {
    opacity: 0;
    transform: translateY(-300px); /* Inicialmente desplazado desde abajo */
    transition: all 500ms ease-out;
}

/* Efecto ease out de transicion a 200 ms - Hacia abajo */
.ease-out-transition-DOWN {
    opacity: 0;
    transform: translateY(300px); /* Inicialmente desplazado desde arriba */
    transition: all 500ms ease-out;
}

.slider-docentes {
    position: absolute;
    width: 557px;
    height: 366px;
    left: 67px;
    top: 253px;
    background: #EFF2F7;
}



