.elementor-1944 .elementor-element.elementor-element-2b9a4f9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1944 .elementor-element.elementor-element-341636a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1944 .elementor-element.elementor-element-c73576e{font-family:"Amiri", Sans-serif;}@media(max-width:767px){.elementor-1944 .elementor-element.elementor-element-c73576e{font-size:20px;}}/* Start custom CSS for html, class: .elementor-element-7bb4450 */.slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

/* Todas las slides ocupan el mismo espacio */
.slides {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  animation: fadeSlider 20s infinite;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

/* Animación de fade para cada slide */
.slides:nth-child(1) { animation-delay: 0s; }
.slides:nth-child(2) { animation-delay: 5s; }
.slides:nth-child(3) { animation-delay: 10s; }
.slides:nth-child(4) { animation-delay: 15s; }

@keyframes fadeSlider {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  25%  { opacity: 1; }
  30%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Logo centrado */
.logo-nombres {
  position: absolute;
  bottom: 15%; 
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: fadeDown 2s ease-in-out;
}

.logo-nombres img {
  width: 240px; 
  height: auto;
  display: block;
  margin: 0 auto;
}

.logo-nombres .subtitulo {
  font-size: 18px;
  color: white;
  margin-top: 12px;
  letter-spacing: 2px;
}

/* Flecha animada */
.flecha-scroll {
  margin: 20px auto 0 auto;
  width: 24px;
  height: 24px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(-45deg);
  animation: flechaAnimada 1.5s infinite;
}

@keyframes flechaAnimada {
  0% { transform: translateY(0) rotate(-45deg); opacity: 1; }
  50% { transform: translateY(8px) rotate(-45deg); opacity: 0.6; }
  100% { transform: translateY(0) rotate(-45deg); opacity: 1; }
}

/* Sección blanca */
.contenido-blanco {
  background: #fff;
  padding: 30px 10px;
}

.musica {
  margin: 10px 0 20px 0;
}

.texto-invitacion h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.texto-invitacion p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  max-width: 400px;
  margin: 0 auto;
}

/* Animaciones */
@keyframes fadeDown {
  from {opacity: 0; transform: translate(-50%, -40%);}
  to {opacity: 1; transform: translate(-50%, -15%);}
}/* End custom CSS */