 /* Estilos generales */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Arial', sans-serif;
    }

    body {
      background-color: #f5f5f5;
      color: #333;
      line-height: 1.6;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Estilos del encabezado y navegación */
    header {
      background-color: black;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }

    .logo {
      height: 60px;
      position: relative;
      right: 110px;
    }

    .nav-menu {
      display: flex;
      list-style: none;
    }

    .nav-item {
      margin-left: 25px;
    }

    .nav-link {
      text-decoration: none;
      color: white;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #3498db;
    }

    .dropdown {
      position: static;
    }

    .dropdown-toggle {
      cursor: pointer;
    }

    .dropdown-toggle .fa-chevron-down {
      font-size: 12px;
      margin-left: 5px;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      background-color: #fff;
      width: 100%;
      max-width: 100%;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      border-radius: 8px;
      padding: 30px;
      margin-top: 0;
      /* Eliminado el margen superior */
    }

    .dropdown::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      height: 20px;
      /* Altura suficiente para cubrir el espacio */
      top: 100%;
      background: transparent;
    }


    .dropdown:hover .dropdown-menu {
      display: block;
    }

    /* Estilo grid para productos */
    .dropdown-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      /* 5 columnas en cada fila */
      gap: 10px;
      max-width: 2000px;
      /* Ancho máximo del contenido */
      margin: 0 auto;
      /* Centrar el contenido */
    }

    /* Estilo para categorías de productos */
    .product-category {
      background-color: transparent;
      margin: 0;
      padding: 0;
    }

    .product-item {
      display: block;
      padding: 2px 10px;
      background-color: transparent;
      border: none;
      margin: 0;
      text-align: left;
    }

    .product-item:hover {
      transform: translateY(-5px);
    }

    .product-img {
      width: 100%;
      height: 150px;
      /* Altura fija y estándar para todas las imágenes */
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* Asegura que la imagen cubra todo el espacio sin distorsionarse */
      transition: transform 0.5s ease;
      border-radius: 8px;
      /* Añadir bordes redondeados a las imágenes también */
    }

    /* Específicamente corrige el tamaño de las imágenes de mamparas y platos de ducha */
    .product-category:nth-last-child(2) .product-img,
    .product-category:last-child .product-img {
      height: 150px !important;
      /* Forzar la misma altura que el resto */
      border-radius: 8px !important;
      /* Forzar bordes redondeados */
      overflow: hidden !important;
      /* Asegurar que la imagen no se salga del contenedor */
    }

    .product-item:hover .product-img img {
      transform: scale(1.05);
    }

    .dropdown-menu a,
    .dropdown-menu a:hover,
    .dropdown-menu a:focus,
    .dropdown-menu a:active {
      text-decoration: none !important;
      border-bottom: none !important;
      box-shadow: none !important;
      outline: none !important;
    }

    .product-item {
      display: block;
      padding: 2px 10px;
      background-color: transparent;
      border: none;
      margin: 0;
      text-align: left;
      text-decoration: none !important;
      /* Forzar eliminar subrayado */
      color: #3498db;
      /* Color azul */
    }

    .product-item h3 {
      font-size: 12px;
      font-weight: 500;
      margin-top: 8px;
      transition: color 0.3s ease;
      color: #3498db;
      /* Color azul como especificaste */
      text-decoration: none !important;
      /* Forzar eliminar subrayado */
    }

    /* Regla para asegurar que no hay underlines */
    .product-item::after,
    .product-item::before {
      display: none !important;
      content: none !important;
      border: none !important;
      text-decoration: none !important;
    }

    .product-item:hover h3 {
      color: #000;

    }

    .burger {
      display: none;
      cursor: pointer;
    }

    .burger div {
      width: 25px;
      height: 3px;
      background-color: #333;
      margin: 5px;
      transition: all 0.3s ease;
    }

    /* Estilos para el banner */
    .banner {
      background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('mosquiteras/AMB_Practik02.webp');
      background-size: cover;
      background-position: center;
      color: #fff;
      padding: 80px 0;
      text-align: center;
      margin-bottom: 40px;
      height: 500px;
    }

    .banner h1 {
      font-size: 42px;
      margin-bottom: 20px;
      margin-top: auto;
    }

    .banner p {
      font-size: 25px;
      max-width: 800px;
      margin: 0 auto;
    }

    /* Estilos para la sección de productos */
    .products-section {
      padding: 40px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
      color: #2c3e50;
    }

    .product-categories {
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
    }

    .category-btn {
      background: none;
      border: none;
      padding: 10px 20px;
      margin: 0 10px;
      cursor: pointer;
      font-size: 16px;
      transition: all 0.3s;
      border-radius: 25px;
    }

    .category-btn.active {
      background-color: #3498db;
      color: #fff;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 30px;
      margin: 10px;
    }

    .product-card {
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
      height: 480px;
    }

    .product-card:hover {
      transform: translateY(-10px);
    }

    .product-image {
      width: 100%;
      height: 350px;
      object-fit: cover;
    }

    .product-info {
      padding: 20px;
    }

    .product-title {
      font-size: 18px;
      margin-bottom: 10px;
      color: #2c3e50;
    }

    .product-description {
      color: #7f8c8d;
      margin-bottom: 15px;
      font-size: 14px;
    }

    .product-price {
      font-weight: bold;
      color: #3498db;
      font-size: 18px;
      margin-bottom: 15px;
    }

    .product-btn {
      display: inline-block;
      background-color: #3498db;
      color: #fff;
      padding: 8px 15px;
      border-radius: 4px;
      text-decoration: none;
      transition: background-color 0.3s;
    }

    .product-btn:hover {
      background-color: #2980b9;
    }

    /* Sección de características */
    .features-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .features-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .feature-box {
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      padding: 25px;
      text-align: center;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s;
    }

    .feature-box:hover {
      transform: translateY(-5px);
    }

    .feature-icon {
      font-size: 40px;
      margin-bottom: 20px;
      color: #3498db;
    }

    .feature-title {
      margin-bottom: 15px;
      color: #2c3e50;
    }

    .client-info {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .client-image {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 15px;
    }

    .client-name {
      font-weight: bold;
      color: #2c3e50;
    }

    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: #fff;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      z-index: 10;
    }

    .prev-btn {
      left: -20px;
    }

    .next-btn {
      right: -20px;
    }


    /* Estilos del pie de página */
    footer {
      background-color: #2c3e50;
      color: #fff;
      padding: 40px 0;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .footer-column {
      flex: 1;
      min-width: 250px;
      margin-bottom: 30px;
    }

    .footer-title {
      margin-bottom: 20px;
      font-size: 18px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-link {
      margin-bottom: 10px;
    }

    .footer-link a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-link a:hover {
      color: #fff;
    }

    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-icon {
      width: 35px;
      height: 35px;
      background-color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s;
    }

    .social-icon:hover {
      transform: translateY(-5px);
    }

    .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 30px;
      color: #bdc3c7;
      font-size: 14px;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
      .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #333;
        /* Cambiar a un color que contraste */
        width: 80%;
        height: calc(100vh - 70px);
        transition: right 0.5s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        padding: 40px 0;
        z-index: 999;
        /* Asegurar que esté por encima de otros elementos */
      }

      .nav-link {
        color: white !important;
        /* Para asegurar que los enlaces sean visibles */
      }

      .nav-menu.active {
        right: 0;
      }

      .nav-item {
        margin: 5px 0;
        text-align: center;
      }

      .burger {
        display: block;
      }

      /* Animación del botón hamburguesa */
      .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
      }

      .burger.active .line2 {
        opacity: 0;
      }

      .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
      }

      .banner h1 {
        font-size: 32px;
      }

      .banner p {
        font-size: 16px;
      }

      .product-categories {
        flex-wrap: wrap;
      }

      .category-btn {
        margin-bottom: 10px;
      }

      .slider-btn {
        display: none;
      }

      .logo {
        position: relative;
        right: 5px;
      }

      /* Estilos del dropdown en móvil */
      .dropdown {
        position: relative;
        width: 100%;
      }

      /* Asegurar que el enlace de productos también sea blanco en móvil */
      .dropdown-toggle {
        color: white !important;
        text-align: center;
        display: block;
        padding: 5px 0;
        margin: 5px 0;
      }

      /* Ajustar la posición del elemento Productos en el menú móvil */
      .nav-item.dropdown {
        margin: 1px 0;
        text-align: center;
        position: relative;
      }

      /* Mejorar el estilo del menú desplegable en móvil */
      .dropdown-menu {
        position: static !important;
        display: none;
        width: 100%;
        background-color: #444;
        box-shadow: none;
        padding: 10px 0;
        margin-top: 5px;
        border-radius: 0;
        max-height: 350px;
        /* Altura máxima del menú desplegable */
        overflow-y: auto;
        /* Habilita el scroll vertical */
        scrollbar-width: thin;
        /* Para Firefox */
        scrollbar-color: #666 #444;
        /* Para Firefox: color del scroll y fondo */
      }

      /* Estilo personalizado para la barra de desplazamiento en WebKit (Chrome, Safari) */
      .dropdown-menu::-webkit-scrollbar {
        width: 6px;
      }

      .dropdown-menu::-webkit-scrollbar-track {
        background: #444;
      }

      .dropdown-menu::-webkit-scrollbar-thumb {
        background-color: #666;
        border-radius: 6px;
      }

      /* Desactivar hover en móvil para prevenir comportamiento no deseado */
      .dropdown:hover .dropdown-menu {
        display: block !important;
      }

      /* Ajustar grid en móvil */
      .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 5px;
      }

      .product-category {
        margin: 8px 0;
      }

      /* Ocultar imágenes en versión móvil */
      .product-img {
        display: none;
      }

      .product-item {
        text-decoration: none;
        color: white;
      }

      .product-item:hover {
        transform: none;
        /* Eliminar efecto hover en móvil */
        background-color: #666;
      }

      .product-item h3 {
        display: block;
        font-size: 14px;
        color: white;
        margin: 0;
        font-weight: 400;
        /* Añadir un poco más de peso a la fuente */
        text-decoration: none;
      }

      .product-item:active {
        background-color: #777;
        text-decoration: none;
      }
    }

    /* Estilos para los modales de productos */
    .product-modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.7);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .product-modal.active {
      display: block;
      opacity: 1;
    }

    .modal-content {
      background-color: #fff;
      margin: 5% auto;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
      width: 90%;
      max-width: 1000px;
      position: relative;
      transform: translateY(-20px);
      transition: transform 0.3s ease;
      max-height: 90vh;
      overflow-y: auto;
    }

    .product-modal.active .modal-content {
      transform: translateY(0);
    }

    .close-modal {
      position: absolute;
      right: 20px;
      top: 15px;
      font-size: 28px;
      font-weight: bold;
      color: #777;
      cursor: pointer;
      transition: color 0.3s;
    }

    .close-modal:hover {
      color: #000;
    }

    .model-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 25px;
    }

    .model-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }

    .model-card:hover {
      transform: translateY(-5px);
    }

    .model-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .model-card h3 {
      padding: 15px 15px 5px;
      font-size: 18px;
      color: #2c3e50;
    }

    .model-card p {
      padding: 0 15px 15px;
      color: #777;
      font-size: 14px;
    }

    /* Cursor de mano para las imágenes de productos */
    .product-image {
      cursor: pointer;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
      .model-grid {
        grid-template-columns: 1fr;
      }

      .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
      }
    }
    /* Estilo para el botón de contacto */
.contact-btn-container {
    text-align: center;
    margin: 40px 0 20px;
}

.contact-btn {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
}

.contact-btn:hover {
    background-color: #fff;
    color: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Animación para el botón con AOS */
.btn-animation {
    transition: all 0.3s ease;
}