/* Fondo general oscuro y texto claro */
body {
  background-color: #000;
  color: #fff;
  font-family: inherit;
  margin: 0;
  padding: 0;
}

/* HERO DE TIENDA */
.hero-tienda {
  background-image: url('../img/relatos/relatos0.jfif');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
}

.hero-content {
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
}




.relatos {
  padding: 60px 20px;
  background-color: #111; /* Fondo negro */
  text-align: center;
  font-family: 'Georgia', serif;
  color: #eee;
}

.relatos h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #f2f2f2;
}

.relatos-subtitulo {
  font-style: italic;
  color: #c4a47c;
  margin-bottom: 40px;
}

.relatos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.relato-card {
  background-color: #1c1c1c; /* Casi negro */
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.relato-card:hover {
  transform: translateY(-5px);
}

.relato-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.9);
}

.relato-texto {
  padding: 20px;
  text-align: left;
}

.relato-texto h3 {
  margin-bottom: 10px;
  color: #f5f5f5;
  font-size: 1.2rem;
}

.relato-texto p {
  color: #ccc;
  font-size: 0.95rem;
}
.relato-video {
  background-color: #111;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.relato-video h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.relato-video video {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 600px) {
  .relato-video {
    padding: 20px 10px;
  }

  .relato-video h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .relato-video video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 250px;
    border-radius: 10px;
  }
}

