* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #fff;
}

/* Fondo gris y negro con relieve */
.site-header {
  background: linear-gradient(100deg, #ffffff, #fcfcfc);
  position: relative;
  color: #fff;
  overflow: hidden;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 30px;
}

.logo img {
  height: 170px;
  background:#fff; /* Fondo negro con transparencia */
  padding: 8px;
}

.site-nav {
  display: flex;
  gap: 20px;
}

.site-nav a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  transition: color 0.3s;
}

.site-nav a:hover {
  color: #eabf10;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: gold;
  cursor: pointer;
}


.gold-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px; /* Puedes ajustar la altura según lo necesites */
  background: #e6ca71;
}

/* Responsivo */
@media (max-width: 768px) {
  .site-nav {
    display: none;
    flex-direction: column;
    background: #2c2c2c;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 15px 0;
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav a {
    padding: 10px 20px;
    text-align: center;
  }
}


.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
  justify-content: center;
}

.galeria img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #f8f8f8;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }
}

/* Banner responsivo para PC y smartphone */
.banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 10px; /* Opcional: redondea esquinas */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Opcional: sombra para realzar */
}

/* Ajuste para altura en pantallas grandes */
@media (min-width: 768px) {
  .banner img {
    height: 500px; /* Ajusta según necesidad */
  }
}

/* Ajuste para altura en smartphones */
@media (max-width: 767px) {
  .banner img {
    height: 250px; /* Ajusta según necesidad */
  }
}



/* Grid contenedor */
  .productos-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr); /* móvil 1 columna */
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Para tablets */
  @media (min-width: 600px) {
    .productos-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Para desktop pequeño */
  @media (min-width: 900px) {
    .productos-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  
  
 .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.3s ease;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
  }

  .whatsapp-float img {
    width: 32px;
    height: 32px;
  }

  /* Ajustes responsivos */
  @media (max-width: 768px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
    }

    .whatsapp-float img {
      width: 28px;
      height: 28px;
    }
  }