main,
.izq,
.der,
.categoria-catego {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}
.categoria-catego {
  width: 65%;
}
.category-nav {
  background: transparent;
  border: none;
  cursor: pointer;
}
.parte-superior,
.categoria {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.parte-superior {
  height: 900px;
  padding: 50px 0;
  background: linear-gradient(to bottom, #0cb2ba, white);
  align-items: flex-start;
}
.parte-inferior {
  width: 100%;
  height: 700px;
  background-image: url(../assets/images/fondos/Franja-degradado-morado-con-azul-1920x500.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.categoria h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
}
.title {
  color: white;
  font-size: 3.6rem;
  text-shadow: 5px 5px 0px rgb(11 58 163 / 50%);
}
.img-container {
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-container img {
  width: 100%;
/*   height: 100%; */
  object-fit: cover;
}
.text-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
  text-align: center;
  gap: 20px;
}
.text-container h1 {
  width: 100%;
  text-shadow: 5px 5px 0px rgb(11 58 163 / 50%);
}
.btn-Verproducto {
  width: 50%;
  height: 75px;
  text-decoration: none;
  border: none;
  color: var(--blue-strong);
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 6px 6px 10px 0px rgb(0 0 0 / 57%);
  padding: 40px;
}
.btn-Verproducto:hover {
  color: white;
  background: var(--blue-strong);
}
.galeria {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.img-gal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  border-radius: 30px;
  box-shadow: 10px 10px 20px 0px rgb(0 0 0);
  overflow: hidden;
}
.img-gal-container img {
  width: 100%;
  height: 100%;
}
.text-gal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
}
.lista-productos {
  width: 80%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  font-size: 2.2rem;
  font-weight: bold;
  overflow-y: auto;
  height: 400px;
  padding: 30px 0;
  text-shadow: 3px 3px 0px rgb(11 58 163 / 50%);
}
/* Estilo del scroll bar */
.lista-productos::-webkit-scrollbar {
  width: 8px; /* Ancho del scrollbar */
}

/* Estilo del track (fondo del scrollbar) */
.lista-productos::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color del track */
  border-radius: 4px; /* Bordes redondeados */
}

/* Estilo del "thumb" (la barra que se desplaza) */
.lista-productos::-webkit-scrollbar-thumb {
  background: var(--blue-strong); /* Color del thumb */
  border-radius: 4px; /* Bordes redondeados */
}

/* Hover sobre el "thumb" */
.lista-productos::-webkit-scrollbar-thumb:hover {
  background: var(--purple-light); /* Color del thumb cuando se pasa el mouse */
}

.lista-productos input[type="radio"] {
  width: 35px;
  height: 25px;
  border: none;
}
/* Animación de salida hacia arriba */
@keyframes slideOutUp {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Animación de entrada desde abajo */
@keyframes slideInDown {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Clases para aplicar las animaciones */
.slide-out {
  animation: slideOutUp 0.5s ease forwards;
}

.slide-in {
  animation: slideInDown 0.5s ease forwards;
}
#parrafo-catalago{
  width: 80%;
}
/*=============== BREAKPOINTS ===============*/
@media screen and (min-width: 250px) and (max-width: 767px) {
  .parte-superior {
    flex-direction: column;
    height: auto;
    padding: 10px 0 ;
  }
  .categoria-catego {
    width: 100%;
  }
  .title {
    font-size: 2.5rem;
  }
  .category-nav img {
    width: 80%;
  }
  .lista-productos {
    width: 100%;
    font-size: 1.2rem;
    height: 180px;
  }
  .lista-productos,
  .title,
  .text-container h1 {
    text-shadow: 2px 2px 0px rgb(11 58 163 / 50%);
  }
  .title{
    font-size: 2.4rem;
  }
  .img-container{
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .img-container img{
    width: 80%;
    height: 80%;
  }
  .text-container {
    width: 80%;
    font-size: 1.8rem;
    padding: 10px;
    gap: 25px;
  }
  .text-container h1 {
    font-size: 1.6rem;
  }
  .btn-Verproducto {
    width: 85%;
    height: 55px;
    padding: 0px;
  }
  .parte-inferior {
    height: auto;
    padding: 0;
    gap: 70px;
    background-size: 750px;
  }
  .galeria {
    flex-direction: column;
    gap: 25px;
  }
  .img-gal-container{
    width: 150px;
    height: 150px;
  }
  .text-gal-container {
    font-size: 1rem;
    padding: 10px;
    margin-bottom: 0;
  }
  .izq{
    padding: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
}
@media screen and (min-width: 1367px) and (max-width: 1919px) {
}
