@keyframes placeHolderShimmer {
    0%{ background-position: -468px 0; }
    100%{ background-position: 468px 0; }
  }
  @media screen and (max-width: 482px) {
      .animated-page-loader-2, .animated-page-loader-3, .animated-page-loader-4, .animated-page-loader-5, .animated-page-loader-6
      {
          display: none !important;
      }
  }

  @media screen and (max-width: 710px) {
      .animated-page-loader-3, .animated-page-loader-4, .animated-page-loader-5, .animated-page-loader-6
      {
          display: none !important;
      }
  }

  @media screen and (max-width: 938px) {
      .animated-page-loader-4, .animated-page-loader-5, .animated-page-loader-6
      {
          display: none !important;
      }
  }

  @media screen and (max-width: 1166px) {
      .animated-page-loader-5, .animated-page-loader-6
      {
          display: none !important;
      }
  }
  @media screen and (max-width: 1394px) {
      .animated-page-loader-6
      {
          display: none !important;
      }
  }


  .course-box-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Ajusta las columnas automáticamente */
  gap: 20px; /* Espacio entre elementos */
  justify-content: center; /* Centra los elementos */
  padding: 20px;
}

.course-box {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 15px;
  text-align: center;
}

.telegram-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0088cc;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  gap: 8px;
  box-shadow: 0px 4px 10px rgba(0, 136, 204, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 1.5s infinite ease-in-out;
}

.telegram-button:hover {
  background-color: #007bb5;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0px 4px 10px rgba(0, 136, 204, 0.4); }
  50% { transform: scale(1.1); box-shadow: 0px 6px 15px rgba(0, 136, 204, 0.6); }
  100% { transform: scale(1); box-shadow: 0px 4px 10px rgba(0, 136, 204, 0.4); }
}



.patreon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF424D; /* Color oficial de Patreon */
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  gap: 8px;
  box-shadow: 0px 4px 10px rgba(255, 66, 77, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: bounce 1.5s infinite ease-in-out;
}

.patreon-button:hover {
  background-color: #E03E47; /* Un tono más oscuro al pasar el mouse */
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}


/* Estilos para las imágenes */



.img-fluido {
  border-radius: 10px; /* Redondeo de las esquinas */
  max-width: 450px; /* Tamaño reducido */
  max-height: 800px; /* Altura máxima */
  object-fit: cover; /* Ajusta la imagen sin deformarla */
  cursor: pointer; /* Cambia el cursor al pasar el mouse */
}




.img-fluid2 {
  border-radius: 0px; /* Redondeo de las esquinas */
  width: 340px; /* Tamaño reducido */
  height: 260px; /* Altura máxima */
 
  cursor: pointer; /* Cambia el cursor al pasar el mouse */
}

.img-fluid {
  border-radius: 20px; /* Redondeo de las esquinas */
  max-width: 150px; /* Tamaño reducido */
  max-height: 100px; /* Altura máxima */
  object-fit: cover; /* Ajusta la imagen sin deformarla */
  cursor: pointer; /* Cambia el cursor al pasar el mouse */
}


.glide__arrow {
  background: rgba(0, 0, 0, 0.6); /* Fondo oscuro semitransparente */
  color: white; /* Color del ícono */
  border: none; /* Sin bordes */
  width: 50px; /* Ancho del botón */
  height: 50px; /* Alto del botón */
  border-radius: 50%; /* Forma circular */
  font-size: 20px; /* Tamaño del ícono */
  display: flex; 
  align-items: center;
  justify-content: center;
  cursor: pointer; /* Cambia el cursor */
  transition: all 0.3s ease-in-out; /* Efecto de transición */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.glide__arrow--left {
  left: 10px; /* Posición izquierda */
}

.glide__arrow--right {
  right: 10px; /* Posición derecha */
}

/* Efecto al pasar el mouse */
.glide__arrow:hover {
  background: rgba(255, 255, 255, 0.8); /* Fondo más claro */
  color: black; /* Color del ícono cambia */
  transform: scale(1.1); /* Aumenta tamaño */
}



.course-image {
  position: relative;
  overflow: hidden;
}

.course-image img {
  display: block;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

/* Efecto de acercamiento leve */
.course-image:hover img {
  transform: scale(1.1);
}

/* Overlay que muestra el "Ver más" */
.hover-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: bold;
  font-size: 18px;
}

/* Cuando pasamos el mouse, aparece el texto */
.course-image:hover .hover-overlay {
  opacity: 1;
}















/* Mejora visual del título y los detalles */
/* Estilo general */
/* Estilo general */
/* Estilo general */
.item-container {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Contenedor para la imagen, título y detalles (flexbox en fila) */
.item-title {
  display: flex;
  flex-direction: row; /* Alineación en fila */
  align-items: center;  /* Alineación vertical centrada */
  justify-content: space-between; /* Espacio entre los elementos */
  margin-bottom: 10px;
}

/* Imagen del producto */
.item-image {
  margin-right: 15px;  /* Espacio entre la imagen y el título */
}

.imagen-producto {
  width: 100px;
  height: 100px;
  object-fit: cover; /* Asegura que la imagen se recorte proporcionalmente */
  border-radius: 10px;
}

/* Título del producto */
.title {
  font-size: 1.00rem;
  font-weight: bold;
  color: #333;
  text-align: left;
  flex-grow: 1; /* Hace que el título ocupe todo el espacio disponible */
}

.title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.title a:hover {
  color: #007BFF;
}

/* Detalles del producto alineados a la derecha */
.item-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Alineación a la derecha */
  font-size: 0.9rem;
  color: #666;
}

.item-details span {
  margin: 5px 0;
}

.item-rating, .enrolled-student, .item-price {
  display: flex;
  align-items: center;
}

.item-rating i, .enrolled-student i {
  margin-right: 5px;
  color: #FFD700;
}

/* Estilo del precio */
.current-price {
  font-weight: bold;
  color: #28a745;
}

/* Medios de comunicación: Responsividad */
@media (min-width: 768px) {
  /* Para tabletas y dispositivos más grandes */
  .item-container {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
  }

  .item-title {
      flex-direction: row; /* Aseguramos que se mantenga la fila */
      align-items: center;  /* Centrado vertical de los elementos */
  }

  .item-image {
      margin-right: 20px;
  }

  .item-details {
      flex-direction: row;
      justify-content: flex-end;
      align-items: center;
  }

  .item-details span {
      margin: 0 15px;
  }

  .title a {
      font-size: 0.2rem;
  }
}

@media (min-width: 1024px) {
  /* Para escritorios */
  .item-container {
      padding: 20px;
  }

  .item-image {
      margin-right: 30px;
  }

  .title a {
      font-size: 1.00rem;
  }

  .item-details {
      font-size: 1rem;
  }
}



