/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Contenedor general */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
background: center/cover no-repeat;
  background-color: #280d3b;
  color: white;
  padding: 1rem 0;
    background-blend-mode: multiply;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-circle {
  background-color: #fff;
  color: #4b0082;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav a {
  color: white;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
}

.nav a:hover {
  text-decoration: underline;
}

/* Hero section */
.hero {
  background: center/cover no-repeat;
  padding: 100px 0;
  color: white;
  text-align: center;
  background-color: #520552;
  background-blend-mode: multiply;
  background-image: url('/images/IMG-20250804-WA0003-removebg-preview.png');
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
}

/* Productos */
.productos {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #280d3b;
}

.producto-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.producto {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.producto img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.producto h3 {
  color: #280d3b;
  margin-bottom: 0.5rem;
}

.precio {
  color: #800080;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Galería */
.galeria {
  padding: 60px 0;
}

.galeria-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.galeria-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: #280d3b;
  color: white;
  padding: 40px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-content h3 {
  margin-bottom: 1rem;
}

.footer-content p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
}
