/* Media query para dispositivos móviles */
@media (max-width: 768px) {
  /* Estilo base de la barra de navegación */
  .navbar-links {
      display: none; /* Oculta los enlaces por defecto */
      flex-direction: column; /* Coloca los enlaces en columna */
      position: fixed; /* Fija el menú en el lado izquierdo */
      top: 0; /* Alinea al principio de la pantalla */
      left: -250px; /* Lo oculta fuera de la pantalla */
      width: 250px; /* Define el ancho del menú */
      height: 100vh; /* Ocupa toda la altura de la pantalla */
      background-color: #303030; /* Fondo del menú */
      padding-top: 60px; /* Da espacio desde la parte superior */
      z-index: 999;
      transition: left 0.3s ease; /* Animación suave para el deslizamiento */
  }

  /* Cuando la barra de navegación está activa */
  .navbar-links.active {
      display: flex; /* Muestra el menú cuando está activo */
      left: 0; /* Lo desplaza a la izquierda */
  }

  /* Estilo del botón de hamburguesa */
  .hamburger {
      display: block; /* Muestra el botón de hamburguesa en pantallas pequeñas */
      cursor: pointer;
  }

  /* Estilo de los enlaces dentro del menú */
  .navbar-links a {
      color: white;
      padding: 15px; /* Espaciado más amplio */
      text-align: left; /* Alinea el texto a la izquierda */
      width: 100%; /* Hace que los enlaces ocupen todo el ancho */
      border-bottom: 1px solid #444; /* Agrega un borde sutil entre enlaces */
      box-sizing: border-box; /* Asegura que el padding no afecte el ancho */
      border-bottom: none;
  }

  .navbar-links a:hover {
      background-color: #555; /* Resalta el fondo al pasar el cursor */
  }

  .navbar .active-a {
      background-color: #101010;
      border-radius: 0px;
      padding: 17px;

  }

  /* Ajuste de estilos para el dropdown en vistas de móvil */
.dropbtn {
    display: none;
}

    .banner {
        height: 260px;
    }

    .banner-merch {
        height: 260px;
    }

    .image-box-b {
                  display: none;
              }

    .banner h1, .banner-merch h1 {
        font-size: 2rem;
        margin: 0;
    }

    .banner h2, .banner-merch h2 {
        font-size: 1rem;
        margin: 0;
    }

    .banner p, .banner-merch p {
        font-size: 1.2rem;
    }

    .banner-4 {
    background-image: url('https://i.ibb.co/h9MBXr5/banner-catalog-phone.png');
    }

    .section-cuadros {
        flex-direction: column;  /* Cambia la dirección a columna */
        gap: 15px;               /* Reduce el espacio entre los cuadros */
    }

    .cuadro i {
        font-size: 2rem;
        color: #333;
        margin-bottom: 0px;
    }

    .cuadro h3 {
        font-size: 1.2rem;
        margin: 6px 0;
    }
    .cuadro p {
        font-size: .9rem;
    }

    .cuadro {
        height: auto;
        width: auto;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    }

      .section-merch {
        padding-top: 10px;
        gap: 0px;
      }

      .text-box-merch h1 {
          font-size: .8rem; /* Reducir el tamaño del encabezado */
      }

      .text-box-merch i {
          font-size: 1.5rem; /* Reducir el tamaño del encabezado */
          text-align: ri;
      }

      .text-box-merch {
        height: 100px;
        width: 250px;
        border-radius: 15px;
        padding: 5px;
        text-align: center;
        transition: transform 0.3s ease;
      }

      .button-overlay {
          position: absolute; /* Posiciona el botón dentro del contenedor de la imagen */
          top: 85%; /* Centra el botón verticalmente */
          left: 50%; /* Centra el botón horizontalmente */
          transform: translate(-50%, -50%); /* Ajusta el botón para que quede exactamente centrado */
          background-color: #C30000; /* Color de fondo del botón */
          font-weight: bold;
          color: white; /* Color del texto */
          padding: 10px 20px; /* Espaciado interno */
          font-size: 1rem; /* Tamaño de la fuente */
          text-decoration: none; /* Elimina el subrayado */
          border-radius: 25px; /* Bordes redondeados */
          transition: background-color 0.3s ease; /* Transición suave */
      }

      .button-overlay:hover {
          background-color: #808080; /* Cambia el color del botón al pasar el mouse */
      }

      .section-playeras h2,
      .section-tazas h2,
      .section-sudaderas h2 {
          font-size: 1.8rem; /* Reducir el tamaño en pantallas más pequeñas */
      }
      .section-playeras p,
      .section-tazas p,
      .section-sudaderas p {
          font-size: 0.9rem; /* Reducir aún más el tamaño en pantallas más pequeñas */
          display: -webkit-box;
          -webkit-line-clamp: 3;
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;
      }
      .section-playeras .highlight,
      .section-tazas .highlight,
      .section-sudaderas .highlight {
          font-size: 1rem; /* Reducir tamaño */
      }
      .section-playeras .subheading,
      .section-tazas .subheading,
      .section-sudaderas .subheading {
          font-size: 1.2rem; /* Reducir tamaño */
      }
      .section-playeras .info,
      .section-tazas .info,
      .section-sudaderas .info {
          font-size: 0.9rem; /* Reducir tamaño */
      }
      .section-playeras,
      .section-tazas,
      .section-sudaderas {
          flex-direction: column;
          text-align: center;
          align-items: center;
      }
      .text-box, .image-box, .image-box-b,
      .text-box-taza, .image-box-taza {
          width: 80%;
      }

      .banner img, .banner-merch img {
        width: 330px;
        height: auto;
      }

      .boton-whatsapp, .boton-pedido {
        display: none;
      }

      .container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        padding: 20px 20px;
      }

      .box {
        font-size: .9rem;
        padding: 12px;
      }

      .box-a {
          width: auto;
          height: auto; /* Ajusta la altura según necesites */
      }

      .box-t {
          width: 375px; /* Tamaño fijo para evitar expansión */
          height: 250px; /* Mantiene proporción */
          border-radius: 5px;
      }

      .box-t img {
        width: auto;
        height: auto; /* Ajusta la altura según necesites */
    }
      
      .img-container img {
        width: 100%;  /* Hace que la imagen llene el contenedor */
        height: auto; /* Mantiene la proporción */
        
      }

      .img-container {
        width: auto; /* Tamaño fijo para evitar expansión */
        height: 250px; /* Mantiene proporción */
        border-radius: 5px;
      }

      .img-container-b {
        width: auto; /* Tamaño fijo para evitar expansión */
        height: auto; /* Mantiene proporción */
        border-radius: 5px;
      }


      .box svg {
        width: 35px;
        height: 35px;
      }

      .box-a img.default-img {
        display: none; /* Oculta la imagen normal */
      }

      .box-a img.hover-img {
        opacity: 1; /* Muestra la imagen de hover */
        position: relative; /* Asegura que se muestre correctamente */
       }

      .hot-tag {
        font-size: 9px;
        padding: 5px 5px;

      }


      .hot-tag i {
          margin-right: 5px;
      }

      .search-container {
          padding-left: 20px;
          padding-right: 20px;
          margin: 5px;
          padding-bottom: 10px;
      }

      .search-bar {
          width: 100%;
          font-size: 15px;
          border-radius: 30px;
          height: 30px;
      }

      /* Contenedor de la paginación */
.pagination {
  width: 90%;
  margin: 0 auto; /* Centra horizontalmente */
}


      .box-a button {
          width: 30px;
          height: 30px;
          font-size: 13px;
      }

      .box-a button {
        opacity: 0; /* Hacer los botones visibles */
        visibility: visible; /* Asegurarse de que los botones sean visibles */
      }
      .box-a:hover button {
        opacity: 1; /* Asegurarse de que los botones no cambien al hacer hover */
        visibility: visible;
       }

       .contador-num {
         font-size: 2rem;
       }

       .contador-texto {
         font-size:1rem;
       }

       .productos-personalizables-d {
         padding: 0px 20px;
         padding-bottom: 20px;
         margin: 0px;

       }

       .productos-personalizables-d h2 {
         font-size: 1.3rem;
         padding-top: 20px;
       }

       .productos-personalizables-b h2, .productos-personalizables-c h2 {
           font-size: 1.5rem; /* Tamaño de la fuente */
           padding-top: 0px;
           margin: 10px;
       }

       .box-h {
           width: auto; /* Tamaño fijo para evitar expansión */
           height: auto; /* Mantiene proporción */
       }

       .container-b {
        display: grid;
        grid-template-columns: 1fr; /* Una sola columna */
        justify-items: center;
        gap: 40px;
      }

      .container-c {
        display: grid;
        grid-template-columns: 1fr; /* Una sola columna */
        justify-items: center;
        gap: 50px;
      } 

       .box-t button {
           width: 30px;
           height: 30px;
           font-size: 13px;
       }

       .box-h {
        width: 375px;
        height: 375px;
      }
  
      .img-container-c {
        width: auto; /* Tamaño fijo para evitar expansión */
        height: 100%; /* Mantiene proporción */
        border-radius: 5px;
      }
  
      .img-container-c img {
        width: 100%;  /* Hace que la imagen llene el contenedor */
        height: auto; /* Mantiene la proporción */
        
      }

       /* Botón de Regresar */
       .back-btn {
           padding-right: 10px;
           padding-left: 10px;
           margin-right: 10px;
           border-radius: 30px;
           font-size: 20px;
           height: 40px;
       }

       /* Botón de Filtrar */
       .filter-btn {
           padding: 10px;
           margin-left: 10px;
           font-size: 14px;
           align-items: center;
           justify-content: center;
           height: 40px;
           text-align: center;
       }

       .section-comparison {
         padding: 20px 0px; /* Ajustar el padding */
         gap: 3px; /* Mantiene un espacio entre los elementos, si lo deseas */
       }

       .text-slider h2 {
         font-size: 1.5rem;
       }

       .text-slider p {
         font-size: .8rem;
         margin: 10px;
         padding-left: 25px;
         padding-right: 25px;
       }

       .comparison-container {
           position: relative;
           width: 100%;
           max-width: 380px;
           height: 200px;
           overflow: hidden;
           border-radius: 10px; /* Ajusta el valor para redondear las esquinas */
           /* Agrega un borde si deseas, este es opcional */
           border: 1px solid #ddd; /* Cambia el color y tamaño según prefieras */
       }


       .comparison-container img {
           position: absolute;
           border-radius: 10px; /* Debes asegurarte que las imágenes también tengan esquinas redondeadas */
       }

       .section-products {
         padding-top: 30px;
         padding-bottom: 10px;
         background-color: #fff;
         gap: 15px;
       }

       .product-item {
         text-align: center;
         transition: transform 0.3s ease;
       }

       .circle {
         width: 60px;
         height: 60px;
       }

       .circle img {
         width: 70px; /* La imagen sobresale del círculo */
         top: -10px;
       }

       .product-item p {
         margin-top: 5px;
         font-size: 9px;
       }

       .container-destacados {
           flex-direction: column;
           background-image: url(https://i.ibb.co/dwG2khgF/banner-paper-movile.png);
       }

       .box-destacados {
           width: 300px;
           border-radius: 8px;
           overflow: hidden;
           margin: 15px 20px;
       }

       .box-destacados img {
           border-radius: 8px;
       }

       .destacados-title h2{
           font-size: 1.6rem; /* Tamaño de la fuente */
           padding-top: 20px;
           margin: 0px 100px;
           color: #BA006E;
       }


       .destacados-title {
           background-image: url(https://i.ibb.co/vvs0qCYn/banner-movile-san-valentin.png);


       }

       .wrapper {
                   flex-direction: column;
                   align-items: center;
                   background-size: 200% 100%;
               }

       .photo {
        margin-right: 0px;
       }

       .photo img {
           width: 350px;
           height: auto;
           border-radius: 5px;
       }
       .wrapper-content {
           align-items: center;
           padding-top: 20px;
       }

       .oferta-san-valentin {
           background-color: #ffe6e6;
           padding: 40px 20px;
           text-align: center;
           border: 2px solid #ff4d4d;
           border-radius: 10px;
           margin: 20px auto;
           max-width: 350px;
       }

       .button-container-b {
        padding-left: 20px; /* Espacio alrededor de la cuadrícula */
        padding-right: 20px; /* Espacio alrededor de la cuadrícula */
    }
  
    .container_merch_item {
      width: calc(100% - 50px); /* 100% menos 20px de padding a cada lado */
      padding: 10px 10px 0; /* Elimina el padding inferior */
    }

    .container-products-1x,
.container-products-2x,
.container-products-3x,
.container-products-4x,
.container-products-5x,
.container-products-6x {
    background-image: url(https://i.ibb.co/x4mXjWc/texture-3.png);
    background-size: cover; /* Hace que la imagen de fondo cubra todo el contenedor */
    background-position: center; /* Centra la imagen de fondo */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    position: relative;
    width: 340px; /* Se mantiene el tamaño original */
    height: 200px;
    background-color: #303030;
    border-radius: 8px;
    overflow: visible; /* Permite que la imagen sobresalga */
    text-align: center;
    transition: background-color 0.3s, background-image 0.6s;
}

/* Imagen flotante que sobresale */
.product-image-x {
  position: absolute;
  left: 30px;
  top: 0px;
  width: 280px;
  height: 180px;
  transition: transform 0.6s;
}

/* Estilo para los títulos debajo de cada producto */
.product-title {
  font-size: 16px;
  margin: 10px 10px 0px;
}

/* Animación de movimiento */
.container-products-1x:hover .product-image-x,
.container-products-2x:hover .product-image-x,
.container-products-3x:hover .product-image-x,
.container-products-4x:hover .product-image-x,
.container-products-5x:hover .product-image-x,
.container-products-6x:hover .product-image-x {
    transform: translateY(-20px);
}

.contact-section {
  text-align: center;
  padding: 5px 0;
}

.button-container-b {
  gap: 0px; /* Espacio entre las columnas */
}

.button-s {
  display: inline-flex; /* Cambiamos a inline-flex */
  align-items: center;
  padding: 5px 10px;
  margin: 5px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.button-s i{
  font-size: 20px;
  padding-right: 10px;
}

.slider_high {
  flex-direction: column;
  align-items: center;
}

.slider_image_wrapper {
  flex: 0 0 100%;
  max-width: 90%;
}

.item_highlights_a img {
  width: 100%; /* Ajusta el ancho como desees */
  height: auto; /* Mantiene la proporción de la imagen */
  border-radius: 8px;
}

.box-a button.btn-text-icon {
  bottom: 50px;
}

.section_highlights {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
  flex-direction: column; /* Cambia a columna en celulares */
  background-image: url('https://i.ibb.co/dwG2khgF/banner-paper-movile.png'); /* Imagen de fondo para móviles */
}

.design_section {
  flex-direction: column; /* Pone los elementos en columna */
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  gap: 20px; /* Reduce el espacio entre los elementos */
}

.title_design {
  max-width: 100%;
  text-align: center; /* Centra el texto */
}

.title_design h2 {
  font-size: 1.5rem; /* Reduce el tamaño del título */
}

.description_design {
  font-size: 0.9rem; /* Reduce el tamaño de la descripción */
  text-align: center; /* Centra el texto */
}

.image_design_a {
  max-width: 100%;
}

.image_design_a img {
  border-radius: 10px; /* Reduce el radio de las esquinas */
}

.features {
  grid-template-columns: 1fr; /* 1 columna en pantallas pequeñas */
}

.feature {
  flex-direction: column; /* Colocar íconos arriba del texto */
  align-items: center; /* Centrado del ícono y texto */
  padding: 20px; /* Ajuste de padding para mejor visualización */
  text-align: center;
}

.feature i {
  font-size: 2em; /* Reducir el tamaño de los íconos en pantallas pequeñas */
  margin-right: 0px;
}

.feature h3 {
  font-size: 1.1em; /* Ajuste de tamaño de título en pantallas pequeñas */
}

.feature p {
  font-size: 0.85em; /* Ajuste de tamaño de texto en pantallas pequeñas */
}

.why-choose-us {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
}

.contacto {
  display:grid;
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 50px;
  color: white;
}

.map-container {
  flex: 1;
  margin: auto;
  border-radius: 10px;
  width: 100%;
  overflow: hidden; /* Para que las esquinas redondeadas se apliquen al iframe */
}

.map-container iframe {
  border: 0; /* Sin borde */
}

.info-container {
  flex: 1;
  padding: 0px;
  padding-left: 0px;
  text-align: left;
}

.titulo {
  margin-bottom: 10px;
  text-align: center;
}

.info-item {
  margin: 5px 0;
}

.info-item i {
  margin-right: 10px;
  font-size: 20px;
}

.contacto_background {
  background-image: url(https://i.ibb.co/NdpyXw88/background-aes-movile.png);
}

.results-message {
  font-size: 14px;
  margin: 5px 20px;
  padding: 10px;
  border-radius: 5px;
}

.no-results {
  font-size: 14px;
  margin: 5px 20px;
  padding: 10px;
  border-radius: 5px;
}

.contador {
  display: grid;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: bold;
  position: relative;
}

.searching-message {
  font-size: 14px;
  margin: 5px 20px;
  padding: 10px;
  border-radius: 5px;
}
}






































/* Media query adicional para pantallas más pequeñas (hasta 375px) */
  @media (max-width: 375px) {

    .box-t {
      width: 265px; /* Tamaño fijo para evitar expansión */
      height: 175px; /* Mantiene proporción */
      border-radius: 5px;
  }
   .box-t img {
    width: 265px; /* Tamaño fijo para evitar expansión */
    height: 175px; /* Mantiene proporción */
    border-radius: 5px;
  }

  .img-container {
    width: 265; /* Tamaño fijo para evitar expansión */
    height: 175px; /* Mantiene proporción */
    border-radius: 5px;
  }

    .banner {
      height: 200px; /* Aún más pequeño */
    }

    .banner-merch {
      height: 200px; /* Aún más pequeño */
    }

    .banner h1,
    .banner-merch h1 {
      font-size: 1.6rem; /* Más pequeño */
    }

    .banner h2,
    .banner-merch h2 {
      font-size: 0.9rem; /* Aún más pequeño */
    }

    .banner p,
    .banner-merch p {
      font-size: 1rem; /* Más pequeño */
    }

    .section-cuadros {
      gap: 10px; /* Aún menos espacio */
    }

    .cuadro i {
      font-size: 1.6rem; /* Más pequeño */
    }

    .cuadro h3 {
      font-size: 1rem; /* Más pequeño */
    }

    .cuadro p {
      font-size: 0.8rem; /* Más pequeño */
    }

    .text-box-merch h1 {
      font-size: 0.7rem;
    }

    .text-box-merch i {
      font-size: 1.3rem;
    }

    .text-box-merch {
      height: 80px;
      width: 200px;
      padding: 3px;
    }

    .button-overlay {
      font-size: 0.9rem;
      padding: 8px 16px;
    }

    .section-playeras h2,
    .section-tazas h2,
    .section-sudaderas h2 {
      font-size: 1.5rem;
    }

    .section-playeras p,
    .section-tazas p,
    .section-sudaderas p {
      font-size: 0.8rem;
    }

    .section-playeras .highlight,
    .section-tazas .highlight,
    .section-sudaderas .highlight {
      font-size: 0.9rem;
    }

    .section-playeras .subheading,
    .section-tazas .subheading,
    .section-sudaderas .subheading {
      font-size: 1.1rem;
    }

    .section-playeras .info,
    .section-tazas .info,
    .section-sudaderas .info {
      font-size: 0.8rem;
    }

    .banner img,
    .banner-merch img {
      width: 280px; /* Aún más pequeño */
    }

    .container {
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      padding: 15px 15px;
      gap: 5px;
    }

    .container-a {
      display: grid;
      grid-template-columns: 1fr; /* Una sola columna */
      padding: 15px;
      gap: 10px;
    }
    
    .container-b {
      display: grid;
      grid-template-columns: 1fr; /* Una sola columna */
      padding: 15px;
      gap: 40px;
    }

    .box {
      font-size: 0.8rem;
      padding: 8px;
    }

    .box-a {
      width: auto;
      height: auto;
    }

    

    .img-container-b {
      width: auto;
      height: auto;
    }

    .box svg {
      width: 30px;
      height: 30px;
    }


    .box-a button {
      width: 25px;
      height: 25px;
      font-size: 11px;
    }

    .productos-personalizables-d h2 {
      font-size: 1.1rem;
    }

    .productos-personalizables-b h2,
    .productos-personalizables-c h2 {
      font-size: 1.3rem;
    }

    
    
    .container-c {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        max-width: 300px;
    }


    .box-a button.btn-text-icon {
        font-size: 8px;
        height: 18px;
        bottom: 50px;
        padding-left: 6px;
    }

    .box-a button.btn-text-icon::after {
        font-size: 8px;
        margin-left: 3px;
    }

    .back-btn {
        font-size: 16px;
        height: 30px;
    }

    .filter-btn {
        font-size: 12px;
        height: 30px;
    }

    .text-slider h2 {
        font-size: 1.3rem;
    }

    .text-slider p {
        font-size: 0.7rem;
        padding-left: 15px;
        padding-right: 15px;
    }

    .comparison-container {
        max-width: 300px;
        height: 160px;
    }

    .circle {
        width: 50px;
        height: 50px;
    }

    .circle img {
        width: 60px;
        top: -8px;
    }

    .product-item p {
        font-size: 8px;
    }

    .box-destacados {
        width: 250px;
        margin: 10px 15px;
    }

    .destacados-title h2 {
        font-size: 1.4rem;
        margin: 0px 50px;
    }

    .photo img {
        width: 280px;
    }

    .oferta-san-valentin {
        padding: 30px 15px;
        max-width: 280px;
    }

    .button-container-b {
      padding-left: 20px; /* Espacio alrededor de la cuadrícula */
      padding-right: 20px; /* Espacio alrededor de la cuadrícula */
  }

  .container_merch_item {
    width: calc(100% - 50px); /* 100% menos 20px de padding a cada lado */
    padding: 10px 10px 0; /* Elimina el padding inferior */
}

.container-c {
  display: grid;
  grid-template-columns: 1fr; /* Una sola columna */
  justify-items: center;
  gap: 40px;
} 

.box-h {
  width: 250px;
  height: 250px;
}

.home-banner {
  background-image: url('https://i.ibb.co/hRkxjNsB/banner-ab.png');
}

  }


@media (min-width: 768px) {
   .floating-buttons {
     display: none;
   }
 }


@media (min-width: 1081px) {
  .home-banner {
    background-image: url('https://i.ibb.co/hRkxjNsB/banner-ab.png');
  }
}

@media (min-width: 1600px) {
  .home-banner {
    background-image: url('https://i.ibb.co/fYmS9g8H/banner-aa.png');
  }
}