@font-face{
  font-family: "Gothic";
  src: url(/fonts/GOTHIC.TTF);
  
}

@font-face {
  font-family:"Gothic-negrita-cursiva";
  src: url(/fonts/GOTHICBI.TTF);
}

@font-face {
  font-family: "Gothic-negrita";
  src: url(/fonts/GOTHICB.TTF);
}




#text-mineria{
  font-family:"Gothic-negrita-cursiva";
  font-size: 70px;
}


#titulo-principal{
    font-family:"Gothic";
    color:teal;
    
}

.fondo-logo{
    background-color: #d6d6d642;
}

.img-mini {
    max-width: 80px;
    height: auto;
  }

  
  @media (max-width: 576px) {
    .logo-responsive {
      max-width: 250px;
      margin: 0 auto;
    }

    #titulo-principal {
      font-size: 1.1rem;
    }
  }





  
/* ESTILO DEL FOOTER_________________________________________________ */
  .footer-custom {
    
    
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
    
    background-image: url('../images/fondo-footer.webp');
    background-size: cover; /* Hace que la imagen cubra todo el fondo */
    background-position: center center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */


    animation: moverFondo 150s linear infinite;
  }
  
  @keyframes moverFondo {
    0% {
      background-position: center top; /* Posición inicial (arriba) */
    }
    50% {
      background-position: center bottom; /* Posición final (abajo) */
    }
    100% {
      background-position: center top; /* Regresa a la posición inicial */
    }
    
    
  }
  




  .encabezado{
    border-top: 3px solid rgb(1, 112, 1);
  }



  
  /* EFECTO HOVER TARJETAS::____________________________________________________________________________________ */
  .card {
    transition: transform 0.3s ease; /* Transición suave */
  }
  
  .card:hover {
    transform: scale(1.05); /* Agrandar la tarjeta al 105% */
  }




/* efecto de iluminar iconos de las redes en footer ______________________________________________________*/
  .social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  
  .social-link i {
    font-size: 24px;
    color: white; /* color inicial */
    transition: color 0.3s, transform 0.3s;
  }
  
  .social-link:hover i {
    color: #11ad45; /* color que se activa al pasar el mouse */
    transform: scale(1.2); /* opcional: agranda el icono un poco */
  }



/* COLOR Y EFECTO HOVER BOTONES ARRIBA REDES SOCIALES___________________________________________________________ */
  #icon-encabezado i {
    margin: 1px;
    font-size: 24px;
    color: rgb(0, 0, 0); /* color inicial */
    transition: color 0.3s, transform 0.3s;
  }

  #icon-encabezado:hover i {
    color: #11ad45; /* color que se activa al pasar el mouse */
    transform: scale(1.2); /* opcional: agranda el icono un poco */

  }




  #sugerencias {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    position: absolute;
    top: 100%;  /* Esto asegura que las sugerencias se posicionen debajo del cuadro de búsqueda */
    left: 0;
    z-index: 10;
    width: 100%;  /* Asegura que las sugerencias tengan el mismo ancho que el campo de búsqueda */
  }
  
  #sugerencias li {
    padding: 8px 10px;
    cursor: pointer;
  }
  
  #sugerencias li:hover {
    background-color: #e9ecef;
  }
  

  /* ESTILOS DE MI CARRUSEL */
  
  .carousel-item {
    position: relative;
    max-height: 700px;
  }
  
  .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centra el contenedor */
    text-align: center;
    width: 100%;
    max-width: 900px; /* Opcional: evita que el texto sea muy ancho */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    background-color: rgba(0, 92, 0, 0.6);
    
  }
  
  .carousel-caption h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    margin-top: 65px;
    
  }
  
  .carousel-caption p {
    font-size: 1.2rem;
    margin: 0;
    padding: 0 10px;

    

    
  }

  @media (max-width: 671px) {
    .carousel-caption {
      background-color: transparent !important;
      border: none !important;
      
    }
  }

  @media (max-width: 696px) {

    .carousel-caption h1 {
      font-size: 1.3rem;
      margin-bottom: 8px;
      margin: 0px;
      
    }
  
    
  }




  @media (max-width: 731px) {

    .carousel-caption h1 {
      font-size: 1.3rem;
      margin-bottom: 8px;
      margin: 15px;
      
    }
  
    
  }






  /* Ajustes para pantallas pequeñas */
  @media (max-width: 850px) {
    .carousel-caption {
      max-width: 95%;
      padding: 15px;
    }
  
    .carousel-caption h1 {
      font-size: 1.3rem;
      margin-bottom: 8px;
      margin: 18;
    }
  
    .carousel-caption p {
      font-size: 1rem;
    }
  }

  @media (max-width: 891px) {
    .carousel-caption {
      max-width: 95%;
      padding: 15px;
    }
  
    .carousel-caption h1 {
      font-size: 1.3rem;
      margin-bottom: 8px;
      margin-top: 50px;
    }
  

  }








  
  
  
  