.glide{position:relative;width:100%;box-sizing:border-box}.glide *{box-sizing:inherit}.glide__track{overflow:hidden}.glide__slides{position:relative;width:100%;list-style:none;backface-visibility:hidden;transform-style:preserve-3d;touch-action:pan-Y;overflow:hidden;margin:0;padding:0;white-space:nowrap;display:flex;flex-wrap:nowrap;will-change:transform}.glide__slides--dragging{user-select:none}.glide__slide{width:100%;;flex-shrink:0;white-space:normal;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent}.glide__slide a{user-select:none;-webkit-user-drag:none;-moz-user-select:none;-ms-user-select:none}.glide__arrows{-webkit-touch-callout:none;user-select:none}.glide__bullets{-webkit-touch-callout:none;user-select:none}.glide--rtl{direction:rtl}/*# sourceMappingURL=glide.core.min.css.map */

/* Estilo para las flechas de navegación */
.glide__arrows {
    position: absolute;
    top: 35%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    height: 0px;
  }
  
  .glide__arrow {
    background-color: #1b2e46;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
  }
  
  .glide__arrow:hover {
    opacity: 1;
    transform: scale(1.1);
  }
  
  .glide__arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  
  /* Estilo para la paginación (bullets) */
  .glide__bullets {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  .glide__bullet {
    background-color: #1b2e46;
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .glide__bullet:hover,
  .glide__bullet--active {
    background-color: #000;
    transform: scale(1.2);
    color:#fff
  }
  
  .glide {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .glide.glide--ltr {
    display: block;
    opacity: 1;
  }