/* ======== GENERAL ======== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom right, #000000, #1e0a0a, #3a0c0c);
  color: #f4f0ec;
}

/* ======== MENÚ PRINCIPAL ======== */
.main-nav {
  background: rgba(20, 0, 0, 0.7);
  padding: 20px 0;
  text-align: center;
  backdrop-filter: blur(8px);
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.menu a {
  color: #f4f0ec;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s;
}

.menu a.active,
.menu a:hover {
  color: #d9c18e;
  text-shadow: 0 0 8px rgba(217, 193, 142, 0.6);
}

/* ======== SECCIÓN PRINCIPAL ======== */
.tramas {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 80px;
}

.intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 0;
}

.frase {
  color: #d9c18e;
  font-style: italic;
}

/* ======== CARDS ======== */
.productos {
  display: grid;
  margin-top: 60px;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(217,193,142,0.15);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(217,193,142,0.1);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(217,193,142,0.3);
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.card h2 {
  font-family: 'Playfair Display', serif;
  color: #d9c18e;
  margin-bottom: 10px;
}

.card p {
  opacity: 0.9;
}

.precio {
  margin: 12px 0;
  display: block;
  font-weight: 600;
  color: #e6d4ae;
}

/* ======== BOTONES ======== */
.boton {
  background: #d9c18e;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.boton:hover {
  background: #e6d4ae;
  box-shadow: 0 0 12px rgba(217,193,142,0.6);
}
