/* TEXTOs HOME*/
.custom-text-section {
  text-align: center;
  padding: 50px 0; /* Espacio arriba y abajo */
  width: 100%;
  background-color: #f9f9f9; /* Fondo suave para destacar el texto */
  margin-top: 30px;
  margin-bottom: 30px;
}

.custom-text-section h1 {
  font-size: 2.5rem; /* Tamaño grande para el título */
  color: #238ED2; /* Color primario */
  margin-bottom: 20px;
}

.custom-text-section p {
  font-size: 1rem; /* Tamaño moderado para el párrafo */
  color: #333; /* Color de texto oscuro */
  max-width: 800px; /* Limita el ancho del texto para mejor legibilidad */
  margin: 0 auto; /* Centra el párrafo */
}

.custom-text-section h2 {
  font-size: 1.5rem; /* Tamaño grande para el título */
  color: #238ED2; /* Color primario */
  margin-bottom: 20px;
  margin-top: 20px
}
/* FIN TEXTOS HOME*/

/*HEADER*/
/* Ocultar el buscador, la lupa y el icono de usuario */
.form-box,
.search-box,
#buscar,
.input-search-movil,
.search-input,
.item-user,
[data-action="toggleSearchbar"] {
    display: none !important;
}

/* Alinear el nav a la derecha */
.navbar.navbar-expand-lg {
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Mostrar la hamburguesa en móvil */
@media (max-width: 767.98px) {
  /* Se reestablece la visualización del item-user que contiene la hamburguesa */
  .pr-3 .item-user {
      display: block !important;
  }
}
/*FIN header*/

/*CONTACTO*/
.border-top-theme {
    border-top: 0px solid #151515 !important;
}
/*FIN CONTACTO*/

/*GALERIA*/
    /* GALERÍA-001 MASONRY */
    .gallery-001-container {
      padding-top: 30px;
      padding-bottom: 30px;
    }

    .gallery-001 {
      column-count: 4; /* 4 columnas en desktop */
      column-gap: 15px; /* Espacio entre columnas */
    }

    @media (max-width: 992px) {
      .gallery-001 {
        column-count: 2; /* 2 columnas en tablets */
      }
    }

    @media (max-width: 576px) {
      .gallery-001 {
        column-count: 1; /* 1 columna en móviles */
      }
    }

    .gallery-001 img {
      width: 100%;
      height: auto;
      margin-bottom: 15px; /* Espacio entre imágenes */
      border-radius: 8px;
      object-fit: cover;
      display: block;
      transition: opacity 0.3s ease;
      cursor: pointer;
    }

    .gallery-001 img:hover {
      opacity: 0.8;
    }

    /* Overlay Modal */
    #overlay-gallery-001 {
      background: rgba(0, 0, 0, 0.8);
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      display: none;
    }

    #overlay-gallery-001 img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 0px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      object-fit: contain;
    }

    #overlay-gallery-001 .close-btn-gallery-001 {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 2rem;
      color: #fff;
      cursor: pointer;
      z-index: 10000;
    }
/*FIN GALERIA*/

.section-product-category.mb-5.mt-5 {
    display: none !important;
}
