/*NAV BAR*/
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .5rem .5rem;
  background: linear-gradient(180deg, rgba(9, 14, 30, 0.89) 0%, rgba(9, 14, 30, 0.28) 100%);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  position: absolute;
  left: 1rem;
}

.menu2 {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.menu {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.navbar .nav-link {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 650;
  transition: color 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link:active {
  color: #05caf2;
}

.navbar .nav-item:last-child {
  margin-right: 0;
}

.cta-button-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: .2rem;
  padding: 0.2rem 1.2rem;
  background: linear-gradient(135deg, #05caf2, #1093B1);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.3s;
}

.body2 {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a192f 0%, #091322 100%);
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: 'Roboto Condensed', sans-serif;
  height: 100%;
}

/* Dropdown menu styles */
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.menuCELU {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  position: fixed;
  z-index: 10;
  background: linear-gradient(180deg, rgb(22, 35, 63) 0%, rgb(9, 14, 30) 100%);
  width: 100%;
  top: 0;
  height: 100%;
  padding-top: 4rem;
  left: -200%;
  transition: 0.6s ease-in-out;
}
  
  .menuCELU.active {
	left: 0; /* Muestra el menú cuando esté activo */
  }
  
  .liCELU {
	justify-content: center;
	font-size: 2.5rem; /* Tamaño del texto */
	padding: 1rem 0;
	text-align: center;
	color: #ffffff; /* Texto blanco */
	transition: all 0.3s ease-in-out;
	box-shadow: 0 7px 16px rgba(0, 0, 0, 0.2); /* Sombra ligera */
  }
  
  .aCELU {
	text-decoration: none; /* Elimina subrayado */
	color: #ffffff; /* Mantiene el texto blanco */
	font-weight: 500; /* Grosor del texto */
  }
  
  .aCELU:hover {
	color: #50b7f5; /* Color azul brillante al pasar el mouse */
  }
  
  .ulCELU {
	margin-top: 3rem;
	padding: 0;
	list-style-type: none;
	width: 100%;
  }
  
  .brandCELU {
	display: flex;
	justify-content: center;
	height: auto;
	padding-top: 1.6rem;
  }
  
  .redesCELU {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 3rem; /* Espaciado entre íconos */
	margin-top: 1rem;
  }
  
  .redesCELU a {
	padding: 0.5rem;
  }
  
  .iconsCELU {
	width: 40px; /* Ajuste para íconos más pequeños */
	height: auto;
  }

.btn-info {
  background-color: #00FFFF;
  color: #161B22;
  transition: background-color 0.3s ease;
}

.btn-info:hover {
  background-color: #00CED1;
}

@media (min-width: 1440px) {
  .menu2 {
    gap: 2.5rem;
  }

  .navbar .nav-link {
    font-size: 1rem;
  }
}

@media (max-width: 1366px) {
  .menu2 {
    gap: 2rem;
  }

  .navbar .nav-link {
    font-size: 1rem;
  }

  .CEL {
    display: flex;
    flex-direction: row;
    padding-bottom: 4rem;
  }

  .btn-p {
    padding-top: 1rem;
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  .principal {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .menu {
    display: none; /* Oculta el menú horizontal en dispositivos pequeños */
  }

  .menu2 {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
  }
  .container2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-toggler {
    background: none;
    font-size: 2.5rem;
    color: #ffffff;
    position: absolute;
    right: 0.3rem;
    display: flex;
  }

  .nav-link {
    text-align: center;
    width: 100%;
    padding: 0.5rem 0;
  }

  .redes {
    display: none;
  }
  .info {
    padding-right: 0;
  }
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .liCELU {
    font-size: 2rem; /* Texto más pequeño en pantallas medianas */
  }

  .iconsCELU {
    width: 6vw; /* Ajusta el tamaño del icono */
  }
}

@media screen and (max-width: 480px) {

  .liCELU {
    font-size: 1.8rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    /* Ajuste del texto en pantallas pequeñas */
  }

  .redesCELU {
    margin-top: 0rem;
    flex-direction: row;
    /* Asegura que los íconos sigan en fila */
    justify-content: space-around;
    /* Distribuye los íconos de manera uniforme */
    padding-bottom: 0rem;
    /* Añade espacio inferior */
    gap: 0.5rem;
  }
  .brandCELU {
    display: flex;
    justify-content: center;
    height: auto;
    padding-top: 1.2rem;
  }
  .iconsCELU {
    width: 8vw;
    /* Tamaño adecuado para pantallas pequeñas */
  }

  .container-contacto {
    justify-content: center !important;
  }
}

