* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff8f5;
    color: #333;
    line-height: 1.6;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #ffdede;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    display: flex;
    align-items: center; /* Alinea verticalmente */
    gap: 10px; /* Espacio entre la imagen y el texto */
    font-size: 1.5rem;
    font-weight: bold;
    color: #d6336c;
  }
  
  .logo img {
    height: 80px; /* Ajusta según el tamaño de tu logo */
    width: auto;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  .hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    background-size: cover;
    background-position: center;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    padding: 2rem;
    border-radius: 10px;
  }
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero button {
    padding: 0.7rem 1.5rem;
    background-color: #d6336c;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
  }  
  
  .productos {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .productos h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .producto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .producto {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
  }
  
  .producto img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .producto h3 {
    margin: 1rem 0 0.5rem;
  }
  
  .producto button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #f099a5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .carrito {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
  }
  
  .carrito ul {
    list-style: none;
    margin-bottom: 1rem;
  }
  
  .carrito li {
    margin-bottom: 0.5rem;
  }
  
  .pago {
    padding: 2rem;
    max-width: 600px;
    margin: auto;
  }
  
  .pago label {
    display: block;
    margin-bottom: 1rem;
  }
  
  .pago input[type="radio"] {
    margin-right: 0.5rem;
  }
  
  .pago button {
    background-color: #d6336c;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .hidden {
    display: none;
  }
  
  .contacto {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .contacto h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .contacto-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .formulario, .info {
    flex: 1;
    min-width: 300px;
  }
  
  .formulario form {
    display: flex;
    flex-direction: column;
  }
  
  .formulario label {
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  .formulario input,
  .formulario textarea {
    margin-bottom: 1rem;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .formulario button {
    background-color: #d6336c;
    color: white;
    border: none;
    padding: 0.7rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .info {
    background-color: #fff0f0;
    padding: 1.5rem;
    border-radius: 10px;
  }
  
  .info h3 {
    margin-bottom: 1rem;
  }
  
  .whatsapp-btn {
    display: inline-block;
    margin-top: 1rem;
    background-color: #25d366;
    color: white;
    padding: 0.7rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .mapa {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
  }

  .footer {
    text-align: center;
    padding: 1rem;
    background-color: #ffdede;
    margin-top: 2rem;
  }

  /* categorias.css */
.categorias {
  padding: 100px 0;
  text-align: center;
}

.categorias h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

.categorias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.categoria-item {
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.categoria-item img {
  width: 100%;
  border-radius: 5px;
}

.categoria-item h3 {
  margin: 15px 0;
}

.categoria-item .btn {
  margin-top: 10px;
}

/* Estilo del modal de imagen */
.modal-imagen {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9); /* Fondo oscuro */
}

.modal-contenido {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
}

.cerrar-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.cerrar-modal:hover,
.cerrar-modal:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}