/* === CONTACTO === */
.contacto-vispring {
  background-color: transparent;
  padding: 4rem 2rem;
  font-family: var(--fuente-principal);
  max-width: 1200px;
  margin: 0 auto;
  color: var(--blanco);
}

.contacto-vispring h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--dorado);
}

.contacto-contenido {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contacto-contenido {
    flex-direction: row;
    justify-content: space-between;
  }
}

.contacto-datos {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contacto-datos a {
  color: var(--dorado);
  text-decoration: underline;
}

.contacto-formulario {
  flex: 1;
}

.contacto-formulario form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contacto-formulario input,
.contacto-formulario textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: var(--fuente-principal);
}

.contacto-formulario button {
  padding: 0.75rem 1.5rem;
  background-color: var(--dorado);
  color: var(--burdeos);
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contacto-formulario button:hover {
  background-color: #c9a32f;
}

/* === GALERÍA DE LA TIENDA === */
.galeria-tienda {
  margin-top: 4rem;
  text-align: center;
}

.galeria-tienda h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--dorado);
}

.galeria-imagenes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.galeria-imagenes img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

.galeria-imagenes img:hover {
  transform: scale(1.03);
}

/* === MAPA === */
.mapa-tienda {
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

<section class="coleccion-vispring">
  <h2>Nuestra Colección</h2>

  <!-- Modelo 1 -->
  <div class="modelo-vispring">
    <div class="modelo-imagen anim-img delay-0">
      <img src="https://vispringboutiquebilbao.es/wp/wp-content/uploads/2025/07/modelo-regal.jpg" alt="Modelo Regal Superb">
    </div>
    <div class="modelo-info">
      <h3>Regal Superb</h3>
      <p>Un modelo icónico que combina artesanía británica con materiales naturales premium. Soporte firme, gran transpirabilidad y una sensación envolvente única.</p>
      <a href="/contacto" class="btn-info">Solicitar más información</a>
    </div>
  </div>

  <!-- Aquí puedes duplicar bloques para más modelos -->
</section>


/* === HECHOS A MANO – CONTENEDOR GENERAL === */
.hechos-vispring {
  background-color: transparent;
  color: var(--blanco);
  padding: 4rem 2rem;
  font-family: var(--fuente-principal);
  max-width: 1200px;
  margin: 0 auto;
}

.hechos-vispring h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--dorado);
}

/* === BLOQUES DE CONTENIDO === */
.hechos-bloque {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.hechos-bloque.reverse {
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .hechos-bloque {
    flex-direction: row;
    justify-content: space-between;
  }

  .hechos-bloque.reverse {
    flex-direction: row-reverse;
  }
}

/* === IMÁGENES CON EFECTO HOVER Y ANIMACIÓN === */
.hechos-imagen img {
  width: 100%;
  max-width: 400px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.hechos-imagen img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.delay-0 { animation-delay: 0.2s; }
.delay-1 { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.8s; }
.delay-4 { animation-delay: 1s; }
.delay-5 { animation-delay: 1.2s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === TEXTO Y LISTAS === */
.hechos-texto {
  max-width: 600px;
}

.hechos-texto h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--dorado);
}

.hechos-texto p,
.hechos-texto ul {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.hechos-texto ul {
  padding-left: 1.5rem;
  list-style: disc;
}

/* === GALERÍA PROMOCIONAL CON TAMAÑO CONTROLADO === */
.promo-galeria {
  background-color: transparent;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--blanco);
}

.promo-galeria h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--dorado);
}

.promo-carrusel {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 400px; /* Altura fija para que el contenedor no colapse */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}

/* Todas las imágenes colocadas una encima de otra */
.promo-carrusel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* o 'cover' si prefieres recorte estético */
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  animation: fadeCarrusel 15s infinite;
  border-radius: 12px;
}

/* Delay para rotar */
.promo-carrusel img:nth-child(1) { animation-delay: 0s; }
.promo-carrusel img:nth-child(2) { animation-delay: 5s; }
.promo-carrusel img:nth-child(3) { animation-delay: 10s; }

/* Pausar animación al pasar el ratón */
.promo-carrusel:hover img {
  animation-play-state: paused;
}

/* Animación de aparición progresiva */
@keyframes fadeCarrusel {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  30%  { opacity: 1; }
  35%  { opacity: 0; }
  100% { opacity: 0; }
}

/* === GALERÍA ROTATIVA POR PARES === */
.galeria-rotativa {
  background-color: var(--blanco);
  text-align: center;
  padding: 4rem 2rem;
}

.galeria-rotativa h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--burdeos);
}

.galeria-slideshow {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 400px;
  overflow: hidden;
}

.galeria-par {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.galeria-par img {
  width: 45%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Animación secuencial: 5 pares = 25s ciclo completo */
.galeria-par:nth-child(1) {
  animation: galeriaFade 25s infinite;
  animation-delay: 0s;
}
.galeria-par:nth-child(2) {
  animation: galeriaFade 25s infinite;
  animation-delay: 5s;
}
.galeria-par:nth-child(3) {
  animation: galeriaFade 25s infinite;
  animation-delay: 10s;
}
.galeria-par:nth-child(4) {
  animation: galeriaFade 25s infinite;
  animation-delay: 15s;
}
.galeria-par:nth-child(5) {
  animation: galeriaFade 25s infinite;
  animation-delay: 20s;
}

@keyframes galeriaFade {
  0% { opacity: 0; }
  4% { opacity: 1; }
  16% { opacity: 1; }
  20% { opacity: 0; }
  100% { opacity: 0; }
}

/* === GALERÍA ARTESANAL – Página Historia de la Marca === */
.galeria-artesanal {
  background-color: var(--blanco);
  padding: 4rem 2rem;
  text-align: center;
}

.galeria-artesanal h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--burdeos);
}

.galeria-grid {
  columns: 2;
  column-gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .galeria-grid {
    columns: 3;
  }
}

.galeria-grid img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  break-inside: avoid;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.galeria-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* === SECCIÓN "NUESTRA BOUTIQUE" – ESTILO ELEGANTE Y ANIMADO === */
.boutique-section {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: var(--blanco);
}

.boutique-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .boutique-container {
    flex-direction: row;
    align-items: center;
  }
}

/* Imagen con animación de entrada y hover */
.boutique-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideIn 1s ease-out forwards;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.boutique-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contenido de texto */
.boutique-content {
  max-width: 600px;
}

.boutique-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dorado);
}

.boutique-content p {
  color: var(--blanco);
  margin-bottom: 1rem;
}

/* Botón elegante */
.boutique-btn {
  display: inline-block;
  background-color: var(--dorado);
  color: var(--burdeos);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.boutique-btn:hover {
  background-color: var(--blanco);
  color: var(--burdeos);
}

/* === HERO A PANTALLA COMPLETA CON TEXTO EN DORADO === */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  color: var(--blanco); /* ✅ Título y texto en dorado */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  padding: 2rem;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
	color: var(--dorado);
}

.hero-text p {
  font-size: 1.3rem;
}
.hero, .hero video {
  max-width: 100% !important;
}

/* === GLOBAL === */
:root {
  --burdeos: #4E1C2B;
  --dorado: #D4AF37;
  --blanco: #FFFFFF;
  --fuente-principal: 'Playfair Display', serif;
}

body {
  margin: 0;
  font-family: var(--fuente-principal);
  background-color: var(--blanco);
  color: var(--burdeos);
  scroll-behavior: smooth;
}

h1, h2, h3 {
  color: var(--burdeos);
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
}

section {
  padding: 4rem 2rem;
}

/* Animaciones generales */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* === HISTORIA DE LA MARCA – CONTENEDOR GENERAL === */
.historia-vispring {
  background-color: transparent;
  color: var(--blanco);
  padding: 4rem 2rem;
  font-family: var(--fuente-principal);
  max-width: 1200px;
  margin: 0 auto;
}

.historia-vispring h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--dorado);
}

/* === BLOQUES DE CONTENIDO ESTRUCTURALES === */
.historia-bloque {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.historia-bloque.reverse {
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .historia-bloque {
    flex-direction: row;
    justify-content: space-between;
  }

  .historia-bloque.reverse {
    flex-direction: row-reverse;
  }
}

/* === IMÁGENES CON EFECTO HOVER === */
.historia-imagen img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.historia-imagen img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* === TEXTO DE CADA BLOQUE === */
.historia-texto {
  max-width: 600px;
}

.historia-texto h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--dorado);
}

.historia-texto p,
.historia-texto ul {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.historia-texto ul {
  padding-left: 1.5rem;
  list-style: disc;
}

/* === ANIMACIONES ENTRADA POR CLASE === */
.anim-img {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.delay-0 { animation-delay: 0.2s; }
.delay-1 { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === GALERÍA ROTATIVA – INTEGRADA CON FONDO Y ESTILO DE MARCA === */
.galeria-rotativa {
  background-color: transparent;
  text-align: center;
  padding: 4rem 2rem;
  margin: 0;
}

.galeria-rotativa h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--dorado);
}

.galeria-slideshow {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 400px;
  overflow: hidden;
}

.galeria-par {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.galeria-par img {
  width: 45%;
  max-height: 320px; /* Alto máximo ajustado como el de la imagen que te gustaba */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

/* Animación por pares */
.galeria-par:nth-child(1) { animation: galeriaFade 25s infinite; animation-delay: 0s; }
.galeria-par:nth-child(2) { animation: galeriaFade 25s infinite; animation-delay: 5s; }
.galeria-par:nth-child(3) { animation: galeriaFade 25s infinite; animation-delay: 10s; }
.galeria-par:nth-child(4) { animation: galeriaFade 25s infinite; animation-delay: 15s; }
.galeria-par:nth-child(5) { animation: galeriaFade 25s infinite; animation-delay: 20s; }

@keyframes galeriaFade {
  0% { opacity: 0; }
  4% { opacity: 1; }
  16% { opacity: 1; }
  20% { opacity: 0; }
  100% { opacity: 0; }
}

