
/* ============================================
   ESTILOS GENERALES
============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: #111;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html {
  scroll-behavior: smooth;
}

/* ============================================
   PORTADA - HERO
============================================ */
.hero {
  background-image: url("../img/portada-1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.logo {
  width: 150px;
  margin-bottom: 20px;
  animation: rotacionConZoom 30s ease-in-out infinite;
}

@keyframes rotacionConZoom {
  0%   { transform: rotate(0deg) scale(1); }
  40%  { transform: rotate(360deg) scale(1); }
  55%  { transform: rotate(360deg) scale(1.1); }
  70%  { transform: rotate(360deg) scale(1); }
  100% { transform: rotate(0deg) scale(1); }
}

.texto-centro {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  font-family: 'Allura', cursive;
  font-size: 5rem;
  color: white;
}

p {
  font-size: 2rem;
  margin-bottom: 20px;
}

.descripcion {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #ddd;
}

/* ============================================
   BOTONES UNIFICADOS Y ELEGANTES
============================================ */

.seccion-botones {
  margin-top: 30px;
  text-align: center;
}

.seccion-botones .btn {
  margin: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-decoration: none;
  min-width: 220px;
  transition: all 0.3s ease;
}

/* Botón Rosa centrado y tamaño controlado */
.btn-rosa {
  background-color: #e91e63;
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 30px;
  min-width: auto;
  max-width: 200px;
}

.btn-rosa:hover {
  background-color: #c2185b;
  transform: scale(1.05);
}

/* BOTÓN WHATSAPP ESTILO UNIFICADO */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: #111;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

.btn-whatsapp i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  transform: scale(1.05);
  color: #111;
}


/* Centrado específico para el bloque */
.centrado-boton {
  text-align: center;
  margin: 20px 0;
}


.btn-verde {
  background-color: #25d366;
  color: #111;
}

.btn-verde:hover {
  background-color: #1ebe57;
  transform: scale(1.05);
}

/* ============================================
   SECCIÓN LAS MUÑECAS - UNIFICADA Y CORRECTA
============================================ */
.munecas-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 1rem 0;
  justify-content: center;
}

.munecas-carousel img {
  width: auto;
  height: 500px;
  object-fit: contain;
  border-radius: 10px;
  scroll-snap-align: center;
  transition: transform 0.3s ease;
  background-color: #000;
  padding: 4px;
}

.munecas-carousel img:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .munecas-carousel img {
    width: auto;
    height: 300px;
  }
}

.sonora-carousel{
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px; /* Separación entre fotos */
  padding: 10px;
  margin: 0;
}

.sonora-carousel img{
  flex: 0 0 auto;
  width: 500px;   /* Tamaño fijo para todas */
  height: 300px;  /* Tamaño fijo cuadrado */
  object-fit: cover;
  border-radius: 10px;
  scroll-snap-align: center;
  background-color: #000;
  transition: transform 0.3s ease;
}

.sonora-carousel img:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .munecas-carousel img {
    width: auto;
    height: 300px;
  }
}

.video-container {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  background: #000;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* ============================================
   GALERIA
============================================ */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 950px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  margin: 0 auto 20px auto;
}

.slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  border-radius: 10px;
}

.slider .slide.active {
  opacity: 1;
  z-index: 1;
}

/* ============================================
   CONTACTO
============================================ */
.contacto {
  flex-grow: 1;
  padding: 50px 20px;
  text-align: center;
}

.contenedor-contacto {
  max-width: 600px;
  margin: auto;
}

.contacto input,
.contacto textarea {
  padding: 15px;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  margin: 10px 0;
  width: 100%;
}

.contacto textarea {
  min-height: 150px;
}

.volver-inicio a {
  display: inline-block;
  padding: 12px 30px;
  background-color: #e91e63;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

.volver-inicio a:hover {
  background-color: #c2185b;
  transform: scale(1.05);
}

/* ============================================
   FOOTER Y REDES
============================================ */
.footer {
  background: #25d366;
  color: #111;
  padding: 20px;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: bold;
}

.redes-sociales a {
  color: #111;
  margin: 0 10px;
  text-decoration: none;
  font-size: 1rem;
}

.redes-sociales a:hover {
  color: #000;
}
