body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #333;
  position: relative;
  z-index: 0;
}

.fondo-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.06;
  z-index: -1;
}

header {
  text-align: center;
  padding: 2rem 0;
}

.marca {
  max-width: 500px;
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero {
  text-align: center;
  padding: 3rem 1rem;
  background-color: rgba(255,255,255,0.9);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.whatsapp-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
}

.catalogo {
  padding: 2rem 1rem;
  background-color: #f8f8f8;
  text-align: center;
}

.catalogo h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.productos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.producto {
  width: 300px;
}

.spin360-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.spin360-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.spin360-container img.active {
  display: block;
}

.redes {
  padding: 2rem 1rem;
  text-align: center;
}

.redes h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.social-icons a {
  display: inline-block;
  margin: 0 1rem;
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #eee;
  font-size: 0.9rem;
}
