
    .boton-servicio {
  background-color: #6e2f8d;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.boton-servicio:hover {
  background-color: #a066c9;
}

#formulario-cliente {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 16px;
  max-width: 400px;
  color: white;
  font-weight: 500;
}

#formulario-cliente input,
#formulario-cliente textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

#formulario-cliente button[type="submit"] {
  background-color: #6e2f8d;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}
.carrito h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #6e2f8d;
}
.carrito ul {
  list-style: none;
  padding: 0;
  max-height: 150px;
  overflow-y: auto;
  margin-bottom: 10px;
}
.carrito button {
  width: 100%;
  padding: 8px;
  background-color: #6e2f8d;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
.carrito button:hover {
  background-color: #4a1f63;
}

    .nosotros-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 100px auto;
  padding: 40px;
  background-color: #2a1e1e;
  border-radius: 15px;
  color: white;
}

.texto-nosotros {
  flex: 1;
}

.imagen-nosotros {
  flex: 1;
  display: flex;
  justify-content: center;
}

.imagen-nosotros img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

    a {
  color: #000000; /* o el color que prefieras */
  text-decoration: none; /* opcional: quita el subrayado */
}

a:visited {
  color: #000000; /* mismo color que el enlace normal */
}

    /* Modal overlay */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      z-index: 1000;
      justify-content: center;
      align-items: center;
      transition: all 0.3s ease;
    }
    @keyframes slideIn {
      from { transform: translateY(-20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    
    /* Form fields */
    .modal-form label {
      display: block;
      margin: 10px 0 5px;
      font-weight: 600;
      font-size: 14px;
    }
    
    .modal-form input,
    .modal-form select {
      width: 100%;
      padding: 10px;
      margin-bottom: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      box-sizing: border-box;
    }
    
    /* Botones */
    .botones {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-top: 10px;
    }
    
    .btn-enviar {
      background-color: #4CAF50;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 6px;
      cursor: pointer;
      flex: 1;
      transition: background 0.3s;
    }
    
    .btn-enviar:hover {
      background-color: #45a049;
        }
    
    .btn-cancelar {
      background-color: #e74c3c;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 6px;
      cursor: pointer;
      flex: 1;
      transition: background 0.3s;
    }
    
    .btn-cancelar:hover {
      background-color: #c0392b;
    }
    /* Estilo del fondo oscuro del modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Caja blanca centrada del formulario */
.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Estilo general del formulario */
.form-finalizar {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-finalizar label {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.form-finalizar input,
.form-finalizar select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #aaa;
  width: 100%;
  box-sizing: border-box;
}

.botones-modal {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.botones-modal button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

.botones-modal button[type="submit"] {
  background-color: #6e2f8d;
  color: white;
}

.botones-modal button[type="button"] {
  background-color: #999;
  color: white;
}
.mensaje-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #6e2f8d;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.mensaje-toast.mostrar {
  opacity: 1;
}
    .carrito {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: white;
  color:rgb(19, 10, 10);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  max-width: 300px;
  z-index: 999;
}

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

   body {
  background: url(fondotextura.png) no-repeat center center fixed;
  background-size: cover;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


    section {
  background-color: rgba(255, 255, 255, 0.07); /* Transparente sobre fondo texturizado */
  margin: 40px auto;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 1200px;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  backdrop-filter: blur(3px);
}
header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}


    

    header img {
      width: 150px;
      margin-bottom: 20px;
      filter: drop-shadow(0 0 4px black);
    }

header h1, header p {
  text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
}
.nosotros-header {
  position: absolute;
  top: 100px; /* Ajustá según tu necesidad */
  right: 40px;
  max-width: 400px;
  background-color: rgba(42, 30, 30, 0.8); /* fondo oscuro semitransparente */
  color: white;
  padding: 25px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  z-index: 10;
}

.nosotros-header h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}



    header p {
      font-size: 1.5rem;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    }

  .menu-superior {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #6e2f8d;
  color: white;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  font-family: 'Segoe UI', sans-serif;
}

.menu-izquierda {
  display: flex;
  align-items: center;
  gap: 25px;
}

.logo-menu {
  height: 40px;
}

.menu-superior a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
}

.menu-superior a:hover {
  text-decoration: underline;
}

.buscador {
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  width: 600px;
}

.menu-derecha {
  display: flex;
  align-items: center;
  gap: 15px;

  
}
.btn-acceder {
  background-color: #ffffff00;
  color: #6e2f8d;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-acceder:hover {
  background-color: #f1e2ff;
}


    #nosotros {
      background: url('https://nogallia.s3.amazonaws.com/fondo-nosotros.jpg') no-repeat center center/cover;
      color: white;
      border-radius: 10px;
      margin: 40px auto;
        }

    #nosotros .overlay {
      background-color: rgba(0, 0, 0, 0.6);
      padding: 40px;
      border-radius: 10px;
    }
#productos, #mixes, #servicios, #pedidos, #contacto {
  background-color: rgba(0, 0, 0, 0); /* fondo 100% transparente */
  border-radius: 10px;
  margin: 40px auto;
  padding: 40px 20px;
}

    .productos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 30px;
    }

.producto {
  background-color: rgba(255, 255, 255, 0.07); /* más transparente */
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  backdrop-filter: blur(2px); /* da un efecto de vidrio */
}


.producto h3,
.producto p {
  color: #fff;
}
    .producto:hover {
      transform: scale(1.05);
    }

    .producto img {
      max-width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
    }

    .whatsapp {
      display: inline-block;
      background-color: #25D366;
      color: white;
      padding: 12px 25px;
      border-radius: 8px;
      font-size: 1rem;
      text-decoration: none;
      margin-top: 20px;
      transition: background-color 0v3s;
    }

    .whatsapp:hover {
      background-color: #1ebe5b;
    }

    .precio {
      font-weight: bold;
      color: #4CAF50;
      margin: 10px 0;
       font-size: 1.2rem;
    }
    .seccion-intro {
  margin: 60px auto;
  max-width: 1200px;
  padding: 20px;
  color: white;
  text-align: center;
}

.bloques-intro {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.bloque-intro {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 40px;
  width: 260px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.bloque-intro:hover {
  transform: scale(1.05);
  background-color: rgba(255,255,255,0.2);
}

.galeria-intro {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.galeria-intro img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}


    footer {
      background: #222222;
      color: #ccc;
      text-align: center;
      padding: 25px;
      font-size: 0.95rem;
    }

    .galeria {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      margin-top: 30px;
    }

    .galeria img {
      width: 180px;
      border-radius: 10px;
      object-fit: cover;
      height: 120px;
    }
    @media screen and (max-width: 768px) {
  body {
    background: url(fondotextura.png) no-repeat center center fixed;
    background-size: cover;
  }

  .menu-superior {
    flex-direction: column;
    padding: 10px;
  }

  .menu-izquierda {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .menu-derecha {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .buscador {
    width: 90%;
  }

  .carrito {
    bottom: 10px;
    right: 10px;
    width: 90%;
    max-width: none;
    font-size: 0.9rem;
  }

  header {
    height: auto;
    padding-top: 100px;
    padding-bottom: 30px;
  }

  .nosotros-header {
    position: relative;
    top: auto;
    right: auto;
    max-width: 90%;
    margin: 20px auto;
  }

  .productos {
    grid-template-columns: 1fr;
  }

  .bloques-intro {
    flex-direction: column;
    align-items: center;
  }

  .bloque-intro,
  .galeria-intro img {
    width: 90%;
  }

  .modal-content {
    width: 95%;
    padding: 20px;
  }

  section {
    padding: 20px 15px;
  }
}
#mobile-menu {
  display: none;
}

#mobile-menu.open {
  display: block;
}
.hamburger {
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: block; /* Asegúrate de que esté visible */
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1001;
}
.panel-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 220px;
  height: 100%;
  background: #6e2f8d;
  transition: right 0.3s ease;
  z-index: 9999;
  padding: 20px;
}

.panel-menu.open {
  right: 0;
}
.modal input[type="text"],
.modal textarea,
.modal select {
    width: 100%;
    box-sizing: border-box;
}
.modal input[type="text"],
.modal select {
    height: 36px;
}

.modal textarea {
    height: 80px; /* o lo que prefieras */
}
.modal form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal label {
  font-weight: bold;
  margin-top: 10px;
}

.modal input[type="text"],
.modal textarea,
.modal select {
  width: 100%;
  max-width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.mensaje-confirmado {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 20px 30px;
  border: 2px solid #4CAF50;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  font-size: 18px;
  font-weight: bold;
  color: #4CAF50;
  z-index: 9999;
}
