body {
  font-family: Arial, sans-serif;
  margin: 0;
  text-align: center;
  background: #e4e4e4;
  padding-left: 0px;
  padding-right: 0px;
}

.Imagen_Cabezera {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}
.Imagen_Cabezera .foto-portada {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  animation: zoomPortada 25s ease-in-out infinite alternate;
}
.Imagen_Cabezera .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.8) 80%, rgb(0, 0, 0) 100%);
}

.Titulo_Cabezera {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 5;
}
.Titulo_Cabezera h1 {
  font-family: "Great Vibes", cursive;
  font-size: 45px;
  text-shadow: 4px 4px 0 #000;
  white-space: nowrap;
  margin: 0;
}
.Titulo_Cabezera p {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  text-shadow: 4px 4px 0 #000;
  white-space: nowrap;
  margin: 0;
}

.Mensaje_de_los_novios {
  padding: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
}

.Novios {
  padding: 0;
  margin-bottom: 0;
}
.Novios h2 {
  font-family: "Great Vibes", cursive;
  font-size: 45px;
  margin-top: 50px;
}
.Novios p {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  margin-top: -25px;
}

.Padres {
  padding-top: 20px;
  padding-bottom: 1px;
}
.Padres .Padres_Novio h2,
.Padres .Padres_Novia h2 {
  font-family: "Great Vibes", cursive;
  font-size: 45px;
  margin-top: 10px;
}
.Padres .Padres_Novio p,
.Padres .Padres_Novia p {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  margin-top: -25px;
}
.Padres .Imagen_Novio,
.Padres .Imagen_Novia {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

.Galeria {
  padding: 10px;
  margin-bottom: 0;
}
.Galeria h2 {
  font-family: "Great Vibes", cursive;
  font-size: 45px;
  margin: 0;
}
.Galeria .slider {
  position: relative;
  max-width: 500px;
  margin: 40px auto;
  overflow: hidden;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.8);
}
.Galeria .slides_galeria {
  display: flex;
  gap: 0;
  transition: transform 1s ease;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.Galeria .slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 2/3;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
}
.Galeria img {
  max-width: 100%;
  height: auto;
  display: block;
}
.Galeria .boton_galeria {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.Galeria .boton_galeria:hover {
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.55);
}
.Galeria .boton_galeria:active {
  transform: translateY(-50%) scale(0.9);
}
.Galeria .boton_galeria.atras {
  left: 10px;
}
.Galeria .boton_galeria.siguiente {
  right: 10px;
}

.section {
  padding: 20px;
  margin: 0;
}
.section h2 {
  font-family: "Great Vibes", cursive;
  font-size: 45px;
  margin-top: 0;
  margin-bottom: 30px;
}
.section h3 {
  font-family: "Great Vibes", cursive;
  font-size: 45px;
  margin-top: 0;
  margin-bottom: 20px;
}
.section p {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  margin-top: -25px;
}

.evento {
  background: #fff;
  padding: 40px;
  margin: 0 auto 30px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.evento h3 {
  margin-bottom: 40px;
}
.evento .Imagen_Ceremonia,
.evento .Imagen_Recepcion {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  height: auto;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.8);
}
.evento .Icono_Iglesia {
  display: flex;
  margin: 0px auto;
  height: auto;
  width: 100px;
  margin-top: 0;
}
.evento .Icono_Casino {
  display: flex;
  margin: 0px auto;
  height: auto;
  width: 100px;
  margin-top: 20px;
}
.evento .Icono_Vestimenta {
  display: flex;
  margin: 0px auto;
  height: auto;
  width: 60px;
  margin-top: 0;
}

.boton {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.boton:hover {
  background: #333;
}
.boton:active {
  transform: scale(0.97);
}

.botonWhatsapp {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 30px;
  padding: 12px 25px;
  background: #111;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.55);
  cursor: pointer;
}
.botonWhatsapp:hover {
  background-color: #333;
}
.botonWhatsapp:active {
  transform: scale(0.97);
}

.Confirmacion {
  text-align: center;
}
.Confirmacion h2 {
  font-family: "Great Vibes", cursive;
  font-size: 45px;
}
.Confirmacion p {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  margin-top: -15px;
  padding: 0 1px;
}

.Pie_de_pagina {
  text-align: center;
  background-color: #000;
  color: #fff;
  padding: 1px;
  margin-top: 25px;
}
.Pie_de_pagina p {
  font-size: 15px;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 3;
  margin-top: 50px;
  margin-bottom: 0;
  font-size: 10px;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1s;
}
.scroll-indicator span {
  display: block;
  width: 10px;
  height: 10px;
  margin-top: 0;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(45deg);
  animation: scrollAnim 1.8s infinite;
  opacity: 0.8;
}
.scroll-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.divisor {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  width: 90%;
  max-width: 100%;
  gap: 10px;
}
.divisor .linea {
  flex: 1;
  height: 1px;
  background: #000;
}

@keyframes scrollAnim {
  0% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) translate(5px, 5px);
    opacity: 0;
  }
}
@keyframes zoomPortada {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@media (min-width: 901px) {
  .Imagen_Cabezera {
    height: 100vh;
  }
  .Imagen_Cabezera .foto-portada {
    -o-object-position: center 20%;
       object-position: center 20%;
    transform: none;
    animation: none;
  }
}
@media (max-width: 600px) {
  .Titulo_Cabezera h1 {
    font-size: 60px;
    text-shadow: 3px 3px 0 #000;
  }
  .Titulo_Cabezera p {
    font-size: 50px;
    text-shadow: 3px 3px 0 #000;
  }
  .slider {
    max-width: 92vw;
    margin: 20px auto;
    overflow: hidden;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.8);
  }
  .slides_galeria {
    display: flex;
    transition: transform 1s ease;
  }
  .slide {
    width: 100%;
    flex-shrink: 0;
    height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .scroll-indicator {
    margin-top: 8px;
  }
}/*# sourceMappingURL=design.css.map */