* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: rgb(255, 248, 245);
  overflow: auto;
}

@font-face {
  font-family: "NewIconScript-Regular";
  src: url("../fonts/valid-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: normal;
}

@media (min-width: 767px) {

  html,
  body {
    height: auto;
  }
}

@media (max-width: 767px) {

  html,
  body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    overflow: hidden auto;
    height: auto;
    min-height: 100vh;
  }
}

.wrapper {
  max-width: 1000px;
  margin: 0px auto;
  padding: 32px;
}

@keyframes anim-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes anim-up {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes anim-down {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes anim-left {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes anim-right {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.anim-up,
.anim-down,
.anim-left,
.anim-right,
.anim-fade-in {
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

.anim-up {
  animation-name: anim-up;
}

.anim-down {
  animation-name: anim-down;
}

.anim-left {
  animation-name: anim-left;
}

.anim-right {
  animation-name: anim-right;
}

.anim-fade-in {
  animation-name: anim-fade-in;
}

.anim-pause-1 {
  animation-delay: 1s;
}

.anim-pause-15 {
  animation-delay: 1.5s;
}

.anim-pause-2 {
  animation-delay: 2s;
}

.anim-pause-25 {
  animation-delay: 2.5s;
}

.anim-pause-3 {
  animation-delay: 3s;
}

.anim-pause-35 {
  animation-delay: 3.5s;
}

.anim-pause-4 {
  animation-delay: 4s;
}

.anim-pause-5 {
  animation-delay: 5s;
}

.paused * {
  animation-play-state: paused;
}

:root {
  --heart-color: #eca196;
  --beat-scale: 1.08;
}

body.preloading {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0px;
  display: grid;
  place-items: center;
  background: rgb(255, 255, 255);
  z-index: 10000000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__center {
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
}

.heart {
  color: rgb(236, 161, 150);
  width: 60px;
  height: 60px;
  display: block;
  transform-origin: center center 0px;
  animation: 1.05s ease-in-out infinite beat;
  backface-visibility: hidden;
  transform: translateZ(0px);
  shape-rendering: geometricprecision;
  will-change: transform;
}

@keyframes beat {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.08);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

.preloader__text {
  margin: 0px;
  font: 600 14px / 1.2 "Montserrat", system-ui, sans-serif;
  color: rgb(96, 96, 96);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes beat {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.08);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .heart {
    animation-duration: 1.6s;
  }
}

.gold-text {
  background-image: linear-gradient(rgb(255, 247, 209) 0%, rgb(249, 215, 119) 18%, rgb(230, 185, 87) 40%, rgb(255, 220, 160) 55%, rgb(184, 122, 31) 72%, rgb(138, 87, 22) 100%);
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.2px rgb(198, 146, 69);
}

.glow-dark {
  text-shadow: none !important;
  filter: drop-shadow(rgba(0, 0, 0, 0.8) 0px 0px 4px) drop-shadow(rgba(0, 0, 0, 0.8) 0px 0px 10px) drop-shadow(rgba(0, 0, 0, 0.8) 0px 0px 28px);
  will-change: filter;
}

#enter-btn {
  align-content: center;
  width: 50%;
  padding: 15px;
  text-align: center;
  box-sizing: border-box;
  z-index: 10000;
}

#main-container {
  width: 100%;
  min-height: 100vh;
  overflow: visible;
}

.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url("../images/fondoventana.jpg") center center / cover no-repeat;
  z-index: 100000;
}

.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}

.modal-text {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 30px 30px 60px;
  text-align: right;
  margin-bottom: 0px;
  align-items: flex-end;
}

.audio-container {
  width: 0px;
  height: 0px;
  overflow: hidden;
  position: absolute;
}

.floating-button {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 18px;
  padding: 15px 10px 15px 15px;
  border: medium;
  cursor: pointer;
  background-color: rgb(236, 161, 150);
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px;
  transition: background 0.3s;
  z-index: 1001;
}

.floating-button:hover {
  background-color: rgb(225, 171, 116);
}

.overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 20px;
  z-index: 1002;
}

.overlay-content {
  background: rgb(255, 248, 246);
  padding: 20px;
  border-radius: 10px;
  color: black;
}

.overlay button {
  font-size: 16px;
  padding: 10px 20px;
  margin-top: 10px;
  border: medium;
  background-color: rgb(206, 158, 95);
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.overlay button:hover {
  background-color: rgb(236, 161, 150);
}

.derechosmusica {
  font-family: "Montserrat", sans-serif;
  color: rgb(252, 241, 241);
  font-size: 12px;
  margin-top: 4px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}

.names2 {
  color: rgb(255, 255, 255);
  font-size: 7rem;
  font-family: "Mea Culpa", cursive;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  margin: 0px;
  z-index: 10;
  position: relative;
  text-shadow: rgb(62, 62, 62) 1px 1px 1px, rgb(255, 255, 255) 2px 2px 15px;
}

.namesprueba {
  color: rgb(0, 0, 0);
  font-size: 7rem;
  font-family: "NewIconScript-Regular", cursive;
  font-weight: 400;
  margin: 0px;
  z-index: 10;
}

.xv2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
  position: absolute;
  top: 95px;
  right: 0px;
  z-index: 5;
  text-shadow: rgb(62, 62, 62) 1px 1px 1px, rgb(255, 255, 255) 2px 2px 15px;
}

.name-container {
  text-align: center;
  position: relative;
  display: inline-block;
}

.name-container2 {
  text-align: center;
  position: relative;
  display: inline-block;
  background-image: url("../images/fondologo.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 30px;
}

.names {
  color: rgb(206, 158, 95);
  font-size: 6rem;
  font-family: "Mea Culpa", cursive;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  margin: 0px;
  z-index: 10;
  position: relative;
  letter-spacing: 0px;
}

.xv {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: rgb(236, 161, 150);
  position: absolute;
  top: 85px;
  right: 0px;
  z-index: 5;
}

.text-container {
  position: relative;
  text-align: center;
  width: 100%;
  line-height: 1;
}

.line-int {
  font-family: "Montserrat", serif;
  color: rgb(96, 96, 96);
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.overlay-int {
  font-size: 50px;
  font-family: "Mea Culpa", cursive;
  color: rgb(206, 158, 95);
  position: absolute;
  top: 80%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 10px;
}

.announcement {
  color: rgb(206, 158, 95);
  z-index: 2;
  font-size: 38px;
  font-family: "Great Vibes", cursive;
  font-weight: 500;
  text-align: center;
}

.announcementleft {
  color: rgb(176, 174, 151);
  z-index: 2;
  font-size: 30px;
  font-family: "Great Vibes", cursive;
  font-weight: 500;
  text-align: left;
}

.announcementpeq {
  color: rgb(206, 158, 95);
  z-index: 2;
  font-size: 35px;
  font-family: "Great Vibes", cursive;
  font-weight: 500;
  text-align: center;
}

.announcementpeqmas {
  color: rgb(206, 158, 95);
  z-index: 2;
  font-size: 30px;
  font-family: "Great Vibes", cursive;
  font-weight: 500;
  text-align: center;
}

.announcementpeqcolor {
  color: rgb(236, 161, 150);
  z-index: 2;
  font-size: 36px;
  font-family: "Great Vibes", cursive;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

.announcementclaro {
  color: rgb(255, 248, 245);
  z-index: 2;
  font-size: 41px;
  font-family: "Great Vibes", cursive;
  font-weight: 500;
  text-align: center;
}

.announcementclaropad {
  color: rgb(255, 255, 255);
  z-index: 2;
  font-size: 41px;
  font-family: "Great Vibes", cursive;
  font-weight: 500;
  text-align: center;
  padding: 10px;
  line-height: 1.2;
}

.modal-adicional {
  position: relative;
  font-family: "Montserrat", sans-serif;
  color: rgb(231, 183, 212);
  font-size: 20px;
  font-weight: 600;
}

.modal .parrafo {
  position: relative;
  font-family: "Montserrat", sans-serif;
  color: rgb(109, 109, 109);
  font-size: 15px;
  margin-top: 0px;
  margin-bottom: 0px;
  letter-spacing: 0px;
  line-height: 25px;
  align-content: center;
  text-transform: uppercase;
}

.modal h1 {
  font-size: 5rem;
  color: rgb(0, 0, 0);
  margin: 0px;
  padding: 0rem;
  font-family: "high_spiritedregular", cursive;
  font-weight: 500;
}

.modal img {
  width: 20rem;
  padding: 0rem;
}

.modal .btn {
  font-family: "Montserrat", sans-serif;
  margin-top: 2rem;
  padding: 10px 30px;
  background: rgb(206, 158, 95);
  font-size: 16px;
  color: white;
  border: medium;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s;
}

.modal .btn:hover {
  background-color: rgb(236, 161, 150);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .modal {
    display: flex;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
    justify-content: center;
    z-index: 10000;
  }

  .modal-content {
    width: 600px;
    height: 80vh;
    margin-top: -70px;
    background: url("../images/fondoventana.jpg") center center / cover no-repeat;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 10px 30px;
  }

  .modal {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .modal {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
  }

  .modal-content {
    width: 600px;
    height: 80vh;
    background: url("../images/fondoventana.jpg") center center / cover no-repeat;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 10px 30px;
    position: relative;
  }

  .modal {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

section {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../images/1.jpg") center center / cover no-repeat;
  z-index: 1;
  overflow: hidden;
}

.division {
  width: 230px;
  margin-top: 5px;
  margin-bottom: 5px;
  display: inline-block;
}

.hero-content {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.hero-content img {
  width: 350px;
}

@media (max-width: 1024px) {
  .hero-section {
    background-attachment: scroll;
  }

  .hero-content img {
    width: 320px;
  }
}

.mensaje-section {
  position: relative;
  width: 100%;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  text-align: center;
  z-index: 1;
  background-color: rgb(255, 248, 245);
}

.latizquierda {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 200px;
  height: auto;
  z-index: 0;
}

.latderecha {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 200px;
  height: auto;
  z-index: 0;
}

.mensaje-recuadro {
  position: relative;
  background-color: rgba(255, 255, 255, 0);
  padding: 20px;
  margin: 30px;
  max-width: 800px;
  border-radius: 0px;
  z-index: 1;
  align-content: center;
  align-items: center;
}

.texto-invitacion {
  font-family: "Cinzel", sans-serif;
  color: rgb(96, 96, 96);
  line-height: 30px;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  z-index: 1;
}

.texto-detalles {
  font-family: "Cinzel", sans-serif;
  color: rgb(96, 96, 96);
  line-height: 30px;
  font-size: 17px;
  z-index: 1;
  text-align: center;
}

i {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.hora {
  font-family: "Cinzel", sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: rgb(206, 158, 95);
  text-align: center;
}

.greeting {
  font-family: "Montserrat", sans-serif;
  color: rgb(108, 108, 108);
  font-size: 15px;
  letter-spacing: 4px;
  font-weight: 500;
  text-align: center;
}

.esppeq {
  padding: 10px;
}

.espmed {
  padding: 20px;
}

.espgra {
  padding: 30px;
}

@media (min-width: 768px) and (max-width: 1024px) {

  .latizquierda,
  .latderecha {
    width: 250px;
  }

  .mensaje-recuadro {
    margin: 30px;
  }
}

@media (min-width: 1025px) {

  .latizquierda,
  .latderecha {
    width: 300px;
    opacity: 0.5;
    transition: opacity 0.8s ease-in-out;
  }

  .mensaje-recuadro {
    margin: 30px auto;
  }
}

.aparta-fecha {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-color: rgba(0, 0, 0, 0);
  background-repeat: repeat, no-repeat;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("../images/2.jpg");
  background-origin: padding-box, padding-box;
  background-clip: border-box, border-box;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contenido-aparta {
  position: relative;
  text-align: center;
  width: 80%;
  z-index: 1;
  padding: 20px;
}

.fecha-boda {
  position: relative;
  display: inline-block;
  width: 300px;
  height: 140px;
  font-family: "Montserrat", serif;
  text-align: left;
  letter-spacing: 0px;
}

.numero-grande {
  position: absolute;
  top: -5px;
  left: 90px;
  font-size: 80px;
  font-weight: 400;
  color: rgb(255, 248, 245);
  font-family: "Cinzel", serif;
  z-index: 1;
  letter-spacing: 0px;
}

.mes-medio {
  position: absolute;
  top: 50px;
  left: 0px;
  font-size: 70px;
  font-family: "Great Vibes", cursive;
  color: rgb(252, 204, 207);
  z-index: 2;
  text-transform: capitalize;
  letter-spacing: 0px;
}

.anio-pequeno {
  position: absolute;
  top: 100px;
  left: 150px;
  font-size: 50px;
  font-weight: 400;
  font-family: "Cinzel", serif;
  color: rgb(255, 248, 245);
  z-index: 1;
}

.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.countdown-container {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.countdown-item {
  text-align: center;
  color: rgb(255, 255, 255);
  margin: 15px;
}

.countdown-label {
  font-size: 14px;
  color: rgb(252, 204, 207);
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}

.countdown-value {
  font-size: 40px;
  color: rgb(255, 248, 245);
  font-weight: 500;
  font-family: "Cinzel", sans-serif;
}

.vestimenta-image {
  width: 20%;
  max-width: 40%;
  opacity: 0;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .aparta-fecha {
    background-attachment: scroll;
  }

  .vestimenta-image {
    width: 30%;
    max-width: 30%;
  }
}

.cuando-donde {
  width: 90%;
  padding: 1rem;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.evento {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  gap: 1rem;
}

@media (min-width: 1025px) {
  .evento {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .evento.misa .foto {
    order: 1;
  }

  .evento.misa .detalles {
    order: 2;
  }

  .evento.fiesta .detalles {
    order: 1;
  }

  .evento.fiesta .foto {
    order: 2;
  }
}

@media (max-width: 1024px) {
  .evento {
    flex-direction: column;
  }
}

.columna {
  flex: 1 1 0%;
  padding: 20px;
  align-content: center;
  text-align: center;
}

.columna img {
  width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  .columna img {
    width: 90%;
    align-items: center;
  }
}

.location-container {
  text-align: center;
  place-content: center;
  margin-top: 30px;
}

.location-button {
  background: rgb(37, 211, 22);
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding: 20px 30px;
  border: medium;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
  align-items: center;
}

.location-button:hover {
  background-color: rgb(30, 190, 90);
}

.frase1 {
  width: 100%;
  min-height: 700px;
  background: url("../images/3.jpg") center center / cover no-repeat fixed;
  position: relative;
  z-index: 1;
}

.frase-content {
  position: absolute;
  width: 100%;
  display: flex;
  bottom: 0px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.contenido1-frase1 {
  font-family: "Montserrat", sans-serif;
  color: rgb(255, 255, 255);
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 1px;
}

.contenido2-frase1 {
  font-family: "Great Vibes", cursive;
  color: rgb(236, 161, 150);
  font-size: 41px;
  font-weight: 500;
  line-height: 35px;
  text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 1px;
}

@media (max-width: 1024px) {
  .frase1 {
    height: auto;
    background-attachment: scroll;
    overflow-x: hidden;
  }

  .frase-content {
    padding: 20px;
  }
}

.tabla-itinerario {
  width: 100%;
  max-width: 400px;
  margin: 0px auto;
  border-collapse: collapse;
}

.tabla-itinerario td {
  padding: 10px;
  vertical-align: middle;
}

.imagen-col {
  width: 60px;
  text-align: center;
}

.icono-itinerario {
  width: 50px;
  height: auto;
}

.info-col {
  text-align: left;
}

.nombre-actividad {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: rgb(166, 129, 80);
  text-transform: none;
}

.horario-actividad {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: rgb(96, 96, 96);
}

@media (max-width: 768px) {
  .tabla-itinerario {
    width: 100%;
  }
}

.contenedor-itinerario {
  position: relative;
  width: 100%;
  background: url("../images/2.jpg") center center / cover no-repeat;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.encabitinerario {
  padding: 30px;
  width: 100%;
}

.itinerario {
  width: 100%;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}

.contenedor-3columnas {
  display: grid;
  grid-template-columns: 49% 2% 49%;
  width: 100%;
  gap: 0px;
  padding: 10px;
}

.columna-izquierda {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 20px 10px 10px;
  min-height: 120px;
  text-align: right;
}

.columna-derecha {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 10px 10px 5px;
  min-height: 120px;
  text-align: left;
}

.columna-centro {
  background-image: url("../images/punto.png");
  min-height: 120px;
  width: 13px;
  background-repeat: repeat-y;
  background-position: center center;
}

.info-renglon {
  margin: 5px 0px;
}

.actividad {
  color: rgb(255, 255, 255);
  font-size: 29px;
  font-family: "Great Vibes", cursive;
}

.horario {
  font-family: "Montserrat", sans-serif;
  color: rgb(255, 255, 255);
  font-size: 18px;
}

@media (max-width: 768px) {
  .contenedor-3columnas {
    grid-template-columns: 49% 2% 49%;
  }

  .columna-centro {
    display: block;
  }

  .columna-derecha {
    padding-left: 20px;
  }
}

.cantpases {
  font-family: "Montserrat", sans-serif;
  color: rgb(236, 161, 150);
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  z-index: 1;
}

.centrar-contenido {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
}

.centrar-contenido2 {
  padding: 20px 70px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.centrar-contenido3 {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.galeria {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/2.jpg") center center no-repeat;
}

.slider-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.slider {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0px;
  left: 0px;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide.active {
  display: flex;
  opacity: 1;
  z-index: 2;
}

.fade-in-top {
  animation: 1s ease-in-out fadeInTop;
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(-10%);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.fade-out {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: medium;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
}

.left {
  left: 10px;
}

.right {
  right: 10px;
}

@media (min-width: 1024px) {
  .galeria {
    max-width: 100%;
  }

  .slider-container {
    max-width: 60%;
  }
}

.frase2 {
  width: 100%;
  min-height: 700px;
  background-color: rgba(0, 0, 0, 0);
  background-repeat: repeat, no-repeat;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../images/4.jpg");
  background-origin: padding-box, padding-box;
  background-clip: border-box, border-box;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  position: relative;
  z-index: 1;
}

.frase2-content {
  position: absolute;
  display: flex;
  bottom: 0px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.contenido1-frase2 {
  font-family: "Montserrat", sans-serif;
  color: rgb(255, 255, 255);
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 4px;
}

.contenido2-frase2 {
  font-family: "Great Vibes", cursive;
  color: rgb(255, 255, 255);
  font-size: 44px;
  font-weight: 500;
  line-height: 35px;
  text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 4px;
}

.contenido3-frase2 {
  font-family: "Montserrat", sans-serif;
  color: rgb(243, 202, 76);
  font-size: 25px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 4px;
}

@media (max-width: 1024px) {
  .frase2 {
    height: auto;
    background-attachment: scroll;
    overflow-x: hidden;
  }

  .frase2-content {
    padding: 20px;
  }
}

.pase-recepcion {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding: 20px;
}

.pase-recepcion {
  width: 100%;
  padding: 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pase-recepcion {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 20px 0px;
  gap: 20px;
}

.pase-contenedor {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.pase-imagen {
  width: 100%;
  height: auto;
  display: block;
}

.pase-texto {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.renglones-adicionales p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: white;
  text-align: center;
  margin: 5px 0px;
  padding: 30px;
}

.espadicional {
  padding: 0px 30px;
}

@media (min-width: 768px) {
  .pase-contenedor {
    width: 400px;
  }

  .pase-texto {
    top: 560px;
  }
}

.derechos {
  font-family: "Montserrat", sans-serif;
  color: rgb(255, 255, 255);
  font-size: 15px;
  margin-top: 40px;
  margin-bottom: 10px;
  letter-spacing: 4px;
  font-weight: 500;
  text-transform: uppercase;
}

.derechosmusica {
  font-family: "Montserrat", sans-serif;
  color: rgb(255, 255, 255);
  font-size: 12px;
  margin-top: 4px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}

.music-button {
  position: fixed;
  bottom: 80px;
  right: 0px;
  background-color: rgb(206, 158, 95);
  color: white;
  border: medium;
  padding: 15px 2px 15px 15px;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px;
  font-size: 20px;
  cursor: pointer;
  z-index: 100;
  transition: transform 0.3s, background-color 0.3s;
}

.music-button:hover {
  transform: scale(1.1);
  background-color: rgb(236, 161, 150);
}

.music-button:active {
  transform: scale(0.9);
  background-color: rgb(176, 174, 151);
}

.animated {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated.visible {
  opacity: 1;
  transform: translateY(0px);
}

#main-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.confirmacion-card {
  width: 88%;
  max-width: 720px;
  margin: 35px auto;
  padding: 32px 26px;
  background: #ffffff;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.confirmacion-card .texto-confirmacion {
  font-family: "Cinzel", serif;
  color: rgb(96, 96, 96);
  font-size: 20px;
  line-height: 1.9;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 768px) {
  .confirmacion-card {
    width: 86%;
    padding: 26px 18px;
    border-radius: 24px;
    margin: 28px auto;
  }

  .confirmacion-card .texto-confirmacion {
    font-size: 16px;
    line-height: 1.8;
  }
}