body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  /* background: linear-gradient(to bottom, #18B2C4 ,#ffffff); */
  color: #383838;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  background: linear-gradient(to bottom, #18b2c4, #ffffff);
  color: #000;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* Opcional: agrega sombra sutil */
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-logo {
  height: 120px;
  width: auto;
}
.navbar nav a {
  color: #133649;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
}
.navbar nav a:hover {
  color: #fff;
}

/* CAROUSEL */
.carousel {
  position: relative;
  overflow: hidden;
  max-height: 300px;
}

.slides-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%; /* Asegura que sus hijos (las imágenes) puedan medir el 100% */
}

.slides img {
  height: 100%;
  width: 100%;
  object-fit: cover; /* Ajusta a la altura del carrusel recortando lados */
  flex-shrink: 0;
  display: block;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 5px;
}

.carousel .prev {
  left: 10px;
}

.carousel .next {
  right: 10px;
}

.carousel button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Animación del carrusel */
@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

/* SERVICES */
.services {
  padding: 3rem 0;
  text-align: center;
}
.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columnas */
  gap: 2rem;
  padding: 1rem;
  justify-content: center; /* ✅ Centra el grid */
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  padding: 2rem;
  width: 300px;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  font-size: 1.3rem;
}
.card p {
  margin: 1rem 0;
}
.card button {
  background: #0d1117;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
}
.card button:hover {
  background: #20252d;
}

/* FOOTER */
.footer {
background: linear-gradient(to bottom, #ffffff 0%, #ffffff 5%, #18B2C4 100%);
  color:  #133649;
  text-align: center;
  padding: 2rem 0;
  margin-top: 0rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablets */
  }
}

@media (max-width: 576px) {
  .cards {
    grid-template-columns: 1fr; /* 1 columna en móviles */
  }
}


/*LOGO*/
.logo {
  font-family: 'Monoton', cursive;
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: #fff; /* Puedes cambiar el color si lo deseas */
}

.nosotros {
  font-family: 'Poetsen One', normal;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #000000; /* Puedes cambiar el color si lo deseas */
}


.quienes-somos {
  background-color: #ffffff;
  padding: 3rem 0;
  text-align: center;
  margin-top: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.quienes-somos .descripcion {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 1.5rem auto 0 auto;
  line-height: 1.7;
  color: #555;
}
.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 2rem auto;
  display: block;
  text-align: center;
  width: fit-content;
  transition: background-color 0.3s;
}

.whatsapp-button:hover {
  background-color: #1ebe5b;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  display: block;
  background: none; /* ✅ Quita fondo */
  padding: 0;        /* ✅ Quita espacio interno */
  border: none;
}
.whatsapp-float:hover {
  background-color: #1ebe5b;
  transform: scale(1.1);
}

.whatsapp-float img.whatsapp-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  display: block;
}

.whatsapp-float:hover img.whatsapp-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Puedes reducir o quitar esto si aún se ve un fondo */
}

/* Tooltip */
.tooltip-text {
  visibility: hidden;
  opacity: 0;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px 10px;
  position: absolute;
  right: 70px;
  bottom: 10px;
  white-space: nowrap;
  font-size: 0.9rem;
  transition: opacity 0.3s;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.whatsapp-float:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Contenedor fijo para todo el sistema de menú */
.hamburger-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
}

/* Ocultar el checkbox nativo */
#menu-toggle {
  display: none;
}

/* Botón hamburguesa visible siempre */
.menu-button {
  position: fixed;
  top: 1rem;
  left: 0;
  background-color: #0d1117;
  color: white;
  font-size: 2rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 3100;
}

/* Menú lateral oculto por defecto */
.side-menu {
  position: fixed;
  top: 0;
  left: -220px;
  width: 200px;
  height: 100%;
  background-color: #0d1117;
  display: flex;
  flex-direction: column;
  padding: 4rem 1rem 1rem;
  transition: left 0.3s ease;
  z-index: 3000;
}

/* Mostrar menú al marcar checkbox */
#menu-toggle:checked ~ .side-menu {
  left: 0;
}

/* Mover también el botón con el menú */
#menu-toggle:checked + .menu-button {
  left: 200px;
}

/* Estilos de enlaces */
.side-menu a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  font-weight: bold;
}
.side-menu a:hover {
  color: white;
}

/*quienes somos*/
.quienes-somos-enhanced {
    /* background: #ffffff; */
  padding: 4rem 1rem;
}

.qs-row {
  display: flex;
  flex-wrap: wrap;
    width: 100%;
  margin: 2rem auto;
  align-items: center;
  gap: 2rem;
}

.qs-row.qs-left {
  flex-direction: row;
}

.qs-row.qs-right {
  flex-direction: row-reverse;
}

.qs-image {
  flex: 1 1 350px;
  text-align: center;
}

.qs-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.qs-text {
  flex: 1 1 500px;
}

.qs-text h2,
.qs-text h3 {
  color: #0d1117;
  margin-bottom: 1rem;
}

.qs-text h2 {
  font-size: 2.5rem;
}

.qs-text h3 {
  font-size: 1.5rem;
}

.qs-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
   text-align: justify;
}
.qs-card {
  background-color: #ffffff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
  margin-top: -1rem; /* 🔥 Ajuste visual perfecto */
}
/* Responsive */
@media (max-width: 768px) {
  .qs-row.qs-left,
  .qs-row.qs-right {
    flex-direction: column;
    text-align: center;
  }

  .qs-text {
    padding: 0 1rem;
  }
}

.servicio-banner {
  background: #fff;
  padding: 4rem 1rem;
}

.banner-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.banner-container.reverse {
  flex-direction: row-reverse;
}

.banner-texto {
  flex: 1 1 500px;
}

.banner-texto h2 {
  font-size: 2rem;
  color: #0d1117;
  margin-bottom: 1rem;
}

.banner-texto p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.banner-texto button {
  background: #0d1117;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
}

.banner-texto button:hover {
  background: #20252d;
}

.banner-imagen {
  flex: 1 1 500px;
  text-align: center;
}

.banner-imagen img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .banner-container,
  .banner-container.reverse {
    flex-direction: column;
    text-align: center;
  }

  .banner-texto {
    padding: 0 1rem;
  }
}
/* CAROUSEL MODERNO CON TARJETAS */

/* CAROUSEL AJUSTADO */

.carousel {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  min-height: 845px; /* ✅ Altura mínima fija */
}

.slides-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  width: calc(100vw * 3); /* Ajustar si hay más slides */
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  width: 100vw;
  height: 100%;
  min-height: 845px; /* ✅ Altura mínima */
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ✅ Mostrar imagen completa */
  background-color: white; /* ✅ Evita fondo blanco donde no hay imagen */
}

.slide-content {
  position: absolute;
  top: 20%;
  transform: translateY(-20%);
  max-width: 500px;
  padding: 2rem;
  border-radius: 12px;
  color: #000;
  background: transparent;
  display: flex;
  flex-direction: column;
    align-items: center; /* Centra TODO, texto y botón */
  text-align: center;
  gap: 1rem;
  z-index: 2;
}

/* Alineación izquierda */
.slide-content.left {
  left: 5%;
  align-items: flex-start;
  text-align: left;
}

/* Alineación derecha */
.slide-content.right {
  right: 5%;
  align-items: flex-end;
  text-align: right;
}

.slide-content h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #133649;
  margin: 0;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.2rem;
  color: #128E9A;
  margin: 0;
  line-height: 1.6;
  max-width: 100%;
}

.slide-content button {
  position: relative;
  top: 40px; /* ✅ Ajusta este valor según lo que necesites */
  background: white;
  color: #133649;
  border: 2px solid #133649;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

/* Botón alineado según el contenido */
.slide-content.left button {
  align-self: flex-start;
}

.slide-content.right button {
  align-self: flex-end;
}

.slide-content button:hover {
  background: #133649 !important;
  color: #fff !important;
  border-color: #133649 !important;
}
}

/* Botones navegación */
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 5px;
}

.carousel .prev {
  left: 10px;
}

.carousel .next {
  right: 10px;
}

.carousel button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .carousel,
  .slide {
    height: auto;
    min-height: 400px;
  }

  .slide img {
    object-fit: contain;
  }

  .slide-content {
    max-width: 90%;
    left: 5% !important;
    right: auto !important;
    text-align: center;
    align-items: center;
  }
}
}

.tab-link {
  background: #f1f1f1;
  border: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  font-weight: bold;
  color: #133649;
  transition: all 0.3s ease;
}

.tab-link:hover {
  background: #e0e0e0;
}

.tab-link.active {
  background: white;
  border-bottom: 2px solid white;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-header-floating {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  max-width: none;      /* 🔥 Para que ya no se limite el ancho */
  padding-left: 14rem;   /* Alineación con .qs-card */
  margin-bottom: -1rem; /* Opcional: mejora unión visual */
  position: relative;
  top: 0;              /* ✅ NO usar translate */
  z-index: 10;
}
.tab-link {
  background: #f1f1f1;
  border: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  font-weight: bold;
  color: #133649;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
  margin-bottom: -1px; /* 🔥 TRUCO: se superpone con la tarjeta */
}
.tab-link.active {
  background: white;
  border-bottom: none;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
  z-index: 3;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
}

.modal-content {
  color: #363636 ; /* 🔥 fuerza el texto negro dentro del modal */
}

/* Animación para imagen del slide */
.slide img.animate-fade-in {
  animation: fadeDown 1s ease-out forwards;
}

/* Animación para contenido del slide */
.slide-content.animate-fade-in {
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 1s; /* ✅ se espera 1 segundo */
}

/* Definiciones de keyframes */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px); /* Menor desplazamiento = menos salto */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

}

.servicio-detalle {
  padding: 4rem 0;
  text-align: center;
}

.servicio-subtitulo {
  color: #0d1117;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.servicio-titulo {
  font-size: 2.5rem;
  color: #133649;
  margin-top: 0;
  margin-bottom: 2rem;
}

.servicio-imagen {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.servicio-descripcion {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: left;
}

.boton-volver {
  background-color: #133649;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.boton-volver:hover {
  background-color: #0d1117;
}

input[type="text"], select {
  border: 2px solid #133649;
  border-radius: 8px;
  font-size: 1rem;
  color: #133649;
}
input[type="text"]::placeholder {
  color: #999;
}

/* Título en tarjetas en gris */
.card h3 {
  font-size: 1.3rem;
  color: #444; /* gris oscuro */
  text-align: center;
  margin-top: 1rem;
}

/* Botón centrado, grande y elegante */
.card button {
  display: block;
  margin: 1.5rem auto 0 auto;
  background: #133649;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.card button:hover {
  background: #0d1117;
}

/* Estructura en dos columnas del modal */
.modal-content {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

/* Imagen del modal a la izquierda */
#modalImagen {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Contenido textual del modal */
#modalTexto {
  flex: 1 1 400px;
  color: #444;
}
#modalTexto h2 {
  text-align: center;
  margin-top: 0;
  font-size: 1.8rem;
  color: #133649;
}
#modalTexto p {
  font-size: 1rem;
  line-height: 1.7;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: block; /* ✅ reset */
}

.modal-body {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

#modalImagen {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#modalTexto {
  flex: 1 1 400px;
  color: #444;
}
#modalTexto p {
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #modalTexto h2 {
    text-align: center;
  }
}

.alert-warning {
  background-color: #fff3cd;
  color: #856404;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #ffeeba;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1rem;
  position: relative;
}

.barra-secciones {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  width: 100%;
  padding: 1rem 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.barra-contenedor {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.barra-contenedor a {
  display: inline-block;
  color: #133649;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.6rem 1.2rem; /* más equilibrio */
  line-height: 1.2rem;
  text-align: center;
  border-right: 1px solid #ddd; /* línea sutil */
  vertical-align: middle;
}

.barra-contenedor a:last-child {
  border-right: none;
}



.barra-contenedor a:hover {
  color: #18B2C4;
}

html {
  scroll-behavior: smooth;
}

/* Animación de desvanecimiento */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.6s ease-out forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================= */
/* 🌐 Ajustes Responsive Generales */
/* ============================= */

/* Navbar y logo */
.navbar-logo {
  height: auto;
  max-height: 80px;
  width: auto;
}

@media (max-width: 576px) {
  .navbar .container {
    flex-direction: column;
    gap: 0.5rem;
  }
  .navbar nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* Carrusel (Hero Section) */
@media (max-width: 768px) {
  .carousel,
  .slide {
    min-height: 400px;
    height: auto;
  }
  .slide-content h2 {
    font-size: 1.8rem;
  }
  .slide-content p {
    font-size: 1rem;
  }
  .slide-content button {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Cards de productos y servicios */
.card {
  width: 100%;
  max-width: 320px;
  margin: auto;
}

/* Secciones tipo “Quiénes somos” y “Servicios” */
@media (max-width: 768px) {
  .qs-row,
  .banner-container {
    flex-direction: column;
    text-align: center;
  }
  .qs-text h2,
  .banner-texto h2 {
    font-size: 1.8rem;
  }
}

/* Modal de productos */
@media (max-width: 576px) {
  .modal-content {
    width: 95%;
    padding: 1rem;
  }
  #modalImagen {
    max-width: 100%;
  }
}

/* Barra de navegación de secciones (sticky) */
@media (max-width: 576px) {
  .barra-contenedor {
    flex-direction: column;
    gap: 0.8rem;
  }
  .barra-contenedor a {
    border-right: none;
  }
}

/* ============================= */
/* 🌐 Ajuste responsive para pestañas de "Quiénes somos" */
/* ============================= */
@media (max-width: 768px) {
  .tab-header-floating {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0;   /* ❌ quita el espacio forzado */
    margin-bottom: 1rem;
  }

  .tab-link {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* ============================= */
/* 🌐 Ajuste responsive buscador + categoría en productos */
/* ============================= */
@media (max-width: 768px) {
  .container > div {
    flex-direction: column !important;
    align-items: center;
    gap: 0.8rem;
  }

  #busqueda, 
  #categoria {
    width: 90% !important;
    max-width: 350px;
  }
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}