/* Reset y base */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Georgia, serif;
  background: #f5e8c8;
  color: #333;
  text-align: center;
  padding: 20px;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.logo { width: 100px; }
select {
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #ccc;
}

/* Títulos */
h1 { font-size: 2.8rem; color: #B42424; margin-bottom: 10px; }
h3 { font-size: 1.2rem; color: #444; margin-bottom: 30px; }

/* Galería */
.galeria-vinos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.galeria-vinos img {
  height: 200px;
  width: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.galeria-vinos img:hover {
  transform: scale(1.05);
  filter: brightness(1.05) contrast(1.1);
}

/* Secciones */
.pallet-info,
.about-section {
  background: #fff9ee;
  padding: 20px;
  border-radius: 12px;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Sobre Nosotros */
.about-section .about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.about-text { flex: 1; text-align: left; }
.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* FAQ */
.faq-section {
  max-width: 600px;
  margin: 40px auto;
  text-align: left;
}
.faq-section details {
  background: #fff;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
}
.faq-section summary {
  font-weight: bold;
  cursor: pointer;
}

/* Botón catálogo */
.catalogo-btn {
  background: #B42424;
  color: #fff;
  padding: 12px 25px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  margin: 20px 0;
  transition: background 0.3s;
}
.catalogo-btn:hover {
  background: #8e1d1d;
}

/* Footer */
footer {
  background: #B42424;
  color: #fff;
  padding: 30px 20px;
  margin-top: 60px;
}
