/* 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/fondo/shop2.jpeg');
  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;
}

/* SECCIÓN DE PRODUCTOS */
.productos-tienda {
  padding: 50px 20px;
  background-color: transparent;
  text-align: center;
}

.productos-tienda h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff;
}

.contenedor-productos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.producto {
  background-color: #1a1a1a;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.producto:hover {
  transform: translateY(-5px);
}

.producto img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.producto h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.producto p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 15px;
}

.producto button {
  padding: 10px 20px;
  background-color: #3e2f25;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.producto button:hover {
  background-color: #6f4e37;
}

.testimonios-2 {
  position: relative;
  background-image: url('../img/fondo/testimonial.jpeg'); /* la que tú vas a usar */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 20px;
  overflow: hidden;
}

.testimonios-2 .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.contenedor-testimonios {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.titulo-testimonios h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-family: 'Playfair Display', serif;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 900px; /* Antes era 700px */
  margin: 0 auto;
  padding: 2rem 2rem; /* Un poco más de espacio lateral */
}


.slide {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide.active {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

/* Opcional: animación suave al cambiar de testimonio */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



.slide img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid #fff;
}

.slide p {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-style: italic;
}

.slide span {
  font-size: 1rem;
  color: #ccc;
}

.controles {
  margin-top: 30px;
}

.controles button {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 20px;
  margin: 0 10px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 5px;
}

.controles button:hover {
  background-color: #fff;
  color: #000;
}


.tarjeta {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.tarjeta img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
}

.tarjeta .contenido p {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #fff;
  font-family: inherit; /* USA LA MISMA FUENTE DE TODO EL SITIO */
}

.tarjeta .contenido span {
  font-size: 1rem;
  color: #ddd;
  font-family: inherit;
}


