/* Contenedor principal */
body {
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  background-color: #f2f7fc;
  padding-top: 80px; /* Añade espacio para la navbar fija */
}
/* ./Contenedor principal */

/* Nav Bar  */
.nav-link,
.dropdown-item {
  color: #000 !important;
}

.navbar-fixed {
  background-color: #25e0ee; /* Celeste */
  min-height: 60px; /* Altura mínima */
  box-shadow: 0 6px 6px rgba(17, 14, 14, 0.2); /* Sombra debajo */
  position: fixed; /* Fija la barra en la parte superior */
  top: 0; /* Se posiciona en la parte superior */
  width: 100%; /* Ocupa todo el ancho de la página */
  z-index: 1000; /* Asegura que esté por encima de otros elementos */
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* Ajusta el espacio entre el menú y el botón del dropdown */
}
/* ./Nav Bar  */

/* Tramites Y Servicios*/
.card-ts {
  min-height: 180px; /* Altura mínima para todas las tarjetas */
}
.card-ts:hover {
  background-color: #25e0ee;
  transition: background-color 0.3s ease;
}
.cursor-pointer {
  cursor: pointer;
}
/* ./Tramites Y Servicios*/

/* REDES SOCIALES */

/* Estilos generales y de reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  cursor: pointer;
  text-decoration: none;
}
/* Estilos de la lista */
ul {
  list-style-type: none;
  padding: 0;
}
li {
  list-style-type: none;
}
/* Contenedor de redes sociales */
.contenedor-redes-sociales {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  margin-left: 10px;
  z-index: 1000;
}
/* Estilo de los iconos */
.icono {
  position: relative;
  margin-bottom: 10px;
}
.icono-primary {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  box-shadow: 1px 0 1px rgba(0, 0, 0, 0.5);
}
/* Descripción del icono */
.contenedor-descripcion {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 40px;
}
/* Estilo de la descripción con colores específicos */
.icono-descripcion {
  width: 100px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  height: 40px;
  line-height: 40px;
  padding-left: 4px;
  border-radius: 0 20px 20px 0;
  box-shadow: 1px 0 1px rgba(0, 0, 0, 0.5);
  transform: translate3d(-110%, 0, 0);
  transition: all 0.5s;
}
/* Efecto hover para mostrar la descripción */
.icono-primary:hover ~ .contenedor-descripcion .icono-descripcion {
  transform: translate(0, 0);
}
/*-------Colores para iconos y descripción-------*/
.fa-facebook {
  background: #3b5998;
}
.descripcion-facebook {
  background: #3b5998;
}
.fa-youtube {
  background: #ff0000;
}
.descripcion-youtube {
  background: #ff0000;
}
.fa-envelope {
  background: #404040;
}
.descripcion-email {
  background: #404040;
}
.fa-tiktok {
  background: #010101;
}
.descripcion-tiktok {
  background: #010101;
}
/* ./REDES SOCIALES */

/*    PLATAFORMAS */

.slick-carousel .col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-gob {
  width: 100%;
  height: 70px;
  /* Establece una altura fija para todos los botones */
  max-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.btn-gob img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Mantiene las proporciones de la imagen */
}

.slick-slide {
  display: flex;
  justify-content: center;
}
/*    ./PLATAFORMAS */

/* Estilo para eliminar decoración de texto en enlaces */
a {
  text-decoration: none;
  /* Elimina subrayado */
  color: inherit;
  /* Hereda el color del texto */
}
/*    ./PLATAFORMAS */

.footer-custom {
  background-color: #25e0ee;
}

/* google maps */
@media (max-width: 768px) {
  .info-float {
    display: none;
    /* Oculta el div en pantallas pequeñas */
  }
}
/* google maps */
.nav-item-size {
  font-size: 1.5rem !important; /* Tamaño de fuente para pantallas grandes */
}

@media (max-width: 1350px) {
  /* Pantallas pequeñas (sm y menores) */
  .nav-item-size {
    font-size: 0.75rem !important; /* Tamaño de fuente para pantallas pequeñas */
  }
}

p,
li {
  font-size: 1.25rem;
  /* Slightly larger than small */
}

/* Estilos para las tarjetas con hover */
.chaglla-descripcion {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Sombra inicial más notable */
  border: none; /* Eliminar borde */
}

.chaglla-descripcion:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.5); /* Sombra celeste al hacer hover */
}
.row {
  --bs-gutter-x: 0;
}
.animated-line {
  width: 0%;
  /* Comienza desde el centro con un ancho de 0 */
  animation: expandLine 1s ease forwards;
  /* 1s de duración para expandir */
}

@keyframes expandLine {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}
