body {

    margin: 0;
    padding: 0;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
  -webkit-transition-property: all;
        transition-property: all;
  -webkit-transition-duration: .6s;
        transition-duration: .6s;
  -webkit-transition-timing-function: ease;
        transition-timing-function: ease;
        

}
* {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  padding: 0;
    margin: 0;
 }

/*PORTA MUSICA*/
#music-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffffe6;
    color: white;
    z-index: 99;}
.onda{
    top: 20%;
    position: relative;}
  #music-prompt h2{
    bottom: 10px;
      width: 90%;
      position: relative;
      float: right;
      text-align: right;
      top: 14%;
      color: #4B188E;
text-shadow: 0px 4px 4px rgba(21, 6, 56, 0.20);
font-family: Birthstone;
font-size: 60px;
font-style: normal;
font-weight: 400;
line-height: normal;

  }
     #music-prompt h3{
    bottom: 10px;
      width: 90%;
      float: right;
      text-align: right;
      top: 15%;
      position: relative;
     color: #816DDE;
  font-family: Montserrat;
  font-size: 21.88px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;

  }  
  #music-prompt h4{
    top: 20%;
      width: 80%;
      position: relative;
      color: #816DDE;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

  }
  #content {
    display: none; /* Ocultar contenido hasta que el usuario responda */
    padding: 20px;
}
.btn-music{
    top: 20%;
    position: relative;
    margin-top: 10px;
    display: inline-flex;
    padding: 5px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 9px;
    border: 1px solid var(--Secondary-400-403, #3C3429);
    background: #4B188E;
}
.btn-music h1{
   color: #FFF;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;

} 
.recuadro{
  display:flex;
  flex-direction: column;
  width: 80%;
  height: 400px;
  background-color: #ffffff;
  border-width: 4px;
  border-style: solid;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.recuadro img {
  width: 250px;
  height: 250px;
  position: absolute;
  float: left;
  left: -25%;
  top: -10%;
}
/*large screen*/

#large-screen-message {
  display: none;
  text-align: center;
  font-size: 1.5em;
}
#site-content {
  display: block;
}
#large-screen-message .header {
  position:relative;
  text-align:center;
  background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
  color:white;
}
#large-screen-message .logo {
  width:50px;
  fill:white;
  padding-right:15px;
  display:inline-block;
  vertical-align: middle;
}
#large-screen-message .inner-header {
  height:65vh;
  width:100%;
  margin: 0;
  padding: 0;
}
#large-screen-message .waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}
#large-screen-message .content {
  position:relative;
  height:20vh;
  text-align:center;
  background-color: white;
}


.mouse_scroll {
    position: fixed;
    left: 20px; /* Ajusta según lo cerca que quieras que esté del borde izquierdo */
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999; /* Para que quede por encima del resto del contenido */
}
.m_scroll_arrows{
  display: block;
  width: 10px;
  height: 10px;
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);
   
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  margin: 0 0 3px 4px;
  
  width: 10px;
  height: 10px;
}
.unu{
  margin-top: 1px;
}
.unu, .doi, .trei{
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
    animation: mouse-scroll 1s infinite;
  
}
.unu{
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;
  
  animation-direction: alternate;
  animation-delay: alternate;
}
.doi{
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
  
  animation-delay: .2s;
  animation-direction: alternate;
  
  margin-top: -6px;
}
.trei{
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-direction: alternate;
  
  animation-delay: .3s;
  animation-direction: alternate;
  
  
  margin-top: -6px;
}
.mouse {
  height: 32px;
  width: 20px;
  border-radius: 14px;
  transform: none;
  border: 2px solid #000000;
  top: 170px;
}
.wheel {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: #000000;
  position: relative;
  
  height: 4px;
  width: 4px;
  border: 2px solid #000000;
  -webkit-border-radius: 8px;
          border-radius: 8px;
}
.wheel {
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  -moz-animation: mouse-wheel 0.6s linear infinite;
  animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel{
   0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-moz-keyframes mouse-wheel {
  0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}
@-o-keyframes mouse-wheel {

   0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}
@keyframes mouse-wheel {

   0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}
@-webkit-keyframes mouse-scroll {

  0%   { opacity: 0;}
  50%  { opacity: .5;}
  100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}

/*----------------------------------*/

.contenedor-portada{
    position: relative;
    width: 100%;
    height: calc(100vh - 20px);
    background: url("/XV/XVB-pur/media/fotoportada.png");
    background-size:cover;
    background-position: center;
    background-repeat: repeat;
    display: flex;
    margin: 0 auto;
    overflow: hidden;
    flex-direction: column;
 }
 .logo-año{
  gap: -10px;
    position: absolute;
    display: flex;
    flex-direction: column;
    color: #fff;
    top: 5px;
    align-items: center;
    text-align: center;
    left: 1%;
    border-radius: 36px;
background: #1a09314b;
     border-bottom-left-radius: 5vh;
    border-bottom-right-radius: 5vh;
    border-top-left-radius: 5vh;
    border-top-right-radius: 5vh;

 }
 .logo-año h1{
  font-family: Ramaraja;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 5px 5px;
  position: relative;
 }
.titulo-sub{
    position: relative;
    width: 100%;
    top: 40%;
    bottom: 50%;
    
  }
.titulo-sub .titulo1 h1{
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(21, 6, 56, 0.65);
    font-family: Birthstone;
    font-size: 150px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    bottom: -80px;
    position: relative;

  }
  .titulo-sub .titulo2 h1{
    color: #FFF;
text-shadow: 0px 4px 4px rgba(21, 6, 56, 0.65);
font-family: 'Birthstone';
font-size: 70px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-align: center;
position: relative;
top: -30px;
  }
  .titulo-sub .titulo2{
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 2vh;
    text-align: center;
    justify-content: center;
    align-items: center;
     z-index: 5;
     top: 10px;
  }
  .titulo-sub .titulo2 h2{
 color: #FFF;
text-shadow: 0px 4px 4px rgba(21, 6, 56, 0.65);
font-family: Ramaraja;
font-size: 100px;
font-style: normal;
font-weight: 400;
line-height: normal;
    -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
 z-index: 5;
  position: relative; 
    top: -15px;
  }
.titulo-sub .linea{
    width: 100%;
    position: relative;
  top: 20.5%;
  text-align: center;
  justify-content: center;
  align-items: center;
  z-index: 2;
  height: 24px;
  margin: 0 auto;
  border-radius: 0px 25px 25px 0px;
opacity: 0.5;
background: #623fb5de;
}

  
/*CONTENEDOR introduccion */

.introduccion{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  background-color: #ffffff00;
}
#a{
  position: relative;
  height: 450px;
}
#a .quote-icon-bg {
    height: auto;
    color: #623FB5; /* Color del ícono */
    font-size: 50px; /* Tamaño del ícono */
    padding: 2px; /* Espaciado interno */
    display: flex; /* Asegura que el ícono sea tratable como elemento flex */
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    margin: 10px auto; /* Centra el ícono en el contenedor */
    top: 60px;
    position: relative;
}
#a .quote-icon-bgs {
    height: auto;
    color: #623FB5; /* Color del ícono */
    font-size: 50px; /* Tamaño del ícono */
    padding: 2px; /* Espaciado interno */
    display: flex; /* Asegura que el ícono sea tratable como elemento flex */
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    margin: 10px auto; /* Centra el ícono en el contenedor */
    top: 60px;
    position: relative;
}
#a p{     
   color: #161616;
text-align: center;
font-family: "Playfair Display", serif;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
    width: 80%;
    margin: 0 auto;
    top: 50px;
    position: relative;
}
.introduccion .text{
    text-align: center;
    height: auto;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 80px;

}
.introduccion .text .separator-line2{
  width: 70%;
  position: relative;
  background: #623FB5;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 1px;
  margin: 0 auto;
  bottom: 10px;
  top: -10px;
  }
.introduccion .text h3{
  width: 70%;
color: #161616;
text-align: center;
font-family: "Playfair Display";
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: normal;
margin: 0 auto;
position: relative;
}
.introduccion .titulo-icon{
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.introduccion .titulo3 h1{
color: #4B188E;
text-align: center;
font-family: Carattere;
font-size: 65px;
font-style: normal;
font-weight: 400;
line-height: normal;
left: -40px;
position: relative;
}
.introduccion .titulo3 h2{
color: #4B188E;
text-align: center;
font-family: Carattere;
font-size: 65px;
font-style: normal;
font-weight: 400;
line-height: normal;
left: 40px;
position: relative;
}
.introduccion .icon{
  text-align: center;
align-items: center;
position: relative;
}
.introduccion .icon h3{
  color: #161616;
text-align: center;
font-family: "Playfair Display";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
/* Marco decorativo con imágenes de flores */
.introduccion::before{
   content: '';
  position: absolute;
  top: 30px;
  left: -20%;
  width: 183px;
  height: 183px;
  background: url("/XV/XVB-pur/media/introbefo.png") no-repeat;
  aspect-ratio: 1/1;
  background-size: cover;
  z-index: -1;
  animation: fadeInLeft 7s ease-in-out infinite;
}

.introduccion::after {
  content: '';
  position: absolute;
  top: 300px;
  right: -20%;
  width: 185px;
height: 185px;
background: url("/XV/XVB-pur/media/infoaf.png") ;
aspect-ratio: 1/1;
background-size: cover;
  z-index: -1;
  animation: fadeInRight 7s ease-in-out forwards infinite;
}
.fotodiv {
  position: relative;
text-align: center;
width: 100%;
height: 254px;
background: url("/XV/XVB-pur/media/fotodiv.png");
background-size: cover;
background-position: center center;
background-position-y:-7rem ;

}


.franja{
  position: relative;
  background: #4B188E;
  height: 138px;
  overflow: hidden;
  justify-content: center;
  text-align: center;
  z-index: 5;
}
.franja h2{
  margin-top: 20px;
 color: #ffffff;
text-align: center;
font-family: Carattere;
font-size: 65px;
font-style: normal;
font-weight: 400;
z-index: 55;
line-height: normal;
}
.franja p{
  margin-top: 10px;
  color: #e1d5d5;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
/* Marco decorativo con imágenes de flores */
.franja::before{
   content: '';
  position: absolute;
  top: 25px;
  left: -10%;
  width: 94px;
  height: 94px;
  background: url("/XV/XVB-pur/media/infoaaf.png") no-repeat;
  aspect-ratio: 1/1;
  background-size: cover;
  z-index: -1;
  animation: fadeInLeft 7s ease-in-out infinite;
}
.franja::after {
  content: '';
  position: absolute;
  top: 10px;
  right: -5%;
  width: 94px;
height: 94px;
background: url("/XV/XVB-pur/media/infoaaf.png") no-repeat ;
aspect-ratio: 1/1;
background-size: cover;
  z-index: -1;
  animation: fadeInRight 7s ease-in-out forwards infinite;
}

.fecha{
  top: 40px;
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #ffffff;
}
.fecha .titulofecha{
  color: #fff;
text-align: center;
font-family: "Playfair Display";
font-size: 18px;
font-style: italic;
font-weight: 600;
line-height: normal;
background-color:#4B188E ;
width: 50%;
margin: 0 auto;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
position: relative;
}
.fecha .calendar {
    height: auto;
    margin: 0% auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    overflow: hidden;
    gap: 10px;
  }
.calendar .dia{
    text-align: center;
    padding: 0;
}
.calendar .numero{
    position: relative; 
    top: 0px;
    display: flex;
    flex-direction: row;
}
.numero h1 {
 color: #4B188E;
text-align: center;
font-family: "Playfair Display";
font-size: 60px;
font-style: normal;
font-weight: 600;
line-height: normal;

}



.reloj {
  width: 100%;
  overflow: hidden;
    height: 300px;
    z-index: 5;
    background: #A390E9;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 100%;
    max-height: 400px;
    top: 30px;
  }
  .reloj-titulo {
   color: var(--Shade-1, #FFF);
font-family: "Playfair Display";
font-size: 25.88px;
font-style: normal;
font-weight: 400;
line-height: normal;
 margin-top: -30px;
    margin-bottom: -30px;
    position: relative;
  }
  .reloj .hp-countdown {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px 20px;
    border-radius: 29px;
    text-align: center;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  color: var(--Invitacion4-Principal, #4B188E);
text-align: center;
font-family: "Playfair Display";
font-size: 17px;
font-style: normal;
font-weight: 400;
line-height: normal;
  gap: 1vh;
  }
  .reloj .cd--numbers {
    color: var(--Shade-1, #FFF);
text-align: center;
font-family: "Playfair Display";
font-size: 45.72px;
font-style: normal;
font-weight: 400;
line-height: normal;

}

.infor{
    margin: 0;
  padding: 0; 
  width: 100%;
  background-color: #4b188e1d;
  align-items: center;
  height: 650px;
  display: flex;
  position: relative;

}
.infor .plans-container{
  top: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  border-radius: 1.7rem;
  height: 460px;
  z-index: 3;
  position: relative; 
  text-align: center;
  
}

.icon-outer1{
  top: -60px;
  position: absolute;
  width: 97px;
height: 97px;
flex-shrink: 0;
display: flex;
left: 50%;
z-index: 4;
  transform: translateX(-50%);
justify-content: center;
filter: drop-shadow(3px 2px 4px rgba(0, 0, 0, 0.25));
}

.icon1{
  position: absolute;
  height:97px;
  width: 97px;
  background-color:  #623FB5;
  border-radius: 50%;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  
}
.infor .titulo{
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 25px;
  width: 365px;
  height: 70px;
  flex-shrink: 0;
  width: 90%;
  margin: 0 auto;
  border-top: 0;
  bottom: -1px;
  z-index: 5;
  background: var(--Invitacion3-Crimson, #623FB5);
  box-shadow: 3px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.infor .titulo h1{
  color: #F8F8F5;
font-family: "Cormorant Garamond";
font-size: 43px;
font-style: italic;
font-weight: 600;
line-height: normal;
}
.infor .container2{
display: flex;
width: 90%;
top: -55px;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 520px;
border-radius: 11px;
background: #F8F6FE;
box-shadow: 0px 3px 1.2px 1px rgba(0, 0, 0, 0.456);
}

.infor .container2 h1{
color: var(--Invitacion3-Crimson, #623FB5);
text-align: center;
font-family: "Cormorant Garamond";
font-size: 40px;
font-style: italic;
font-weight: 500;
line-height: 37px; 
margin-top: -10px;
}

.infor .container2 p {
top: 20px;
bottom: 20px;
position: relative;
color: var(--Invitacion3-OBSIDIAN-BLACK, #161616);
text-align: center;
font-family: "Cormorant Garamond";
font-size: 25px;
font-style: normal;
font-weight: 500;
line-height: 100%; /* 25px */
}

.infor .container2 h2{
  color: #623FB5;
text-align: center;
font-family: "Playfair Display";
font-size: 49.88px;
font-style: normal;
font-weight: 400;
line-height: normal;
top: 55px;
position: relative;
}

.buttons {
  display: table;
  height: 100%;
  width: 100%;
  margin-bottom: 10px;
  margin: 0 auto;
   position: relative;
   justify-content: center;
   top: 20px;
}
.btnfos {
  font-family:'Merriweather', serif;
  cursor: pointer;
  display: block;
  position: relative;
  text-decoration: none;
  border-radius: 3rem;
    color: #FFF;
text-align: center;
font-family: "Cormorant Garamond";
font-size: 25px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 25px */
}
.btnfos-3 {
  background: #623FB5;
  border: 3px solid #7D6A8B;
  border-radius: 1rem;
  box-shadow: 0px 3px 0 #816DDE, 2px 4px 6px #816DDE;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: all 150ms linear;
          transition: all 150ms linear;
          margin: 0 auto;
  position: relative;
  width: 40%;
  margin-top: 40px;
  display: flex;
width: 127px;
height: 43px;
padding: 10px;
justify-content: center;
align-items: center;
gap: 10px;
flex-shrink: 0;

}

.btnfos-3:hover {
  background: #816DDE;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  text-shadow: -1px -1px 0 #136a65;
  -webkit-transition: all 250ms linear;
          transition: all 250ms linear;
}

.container2 #mapita{
  align-items: center;
  top: 40px;
  bottom: 30px;
  width: 90%;
  margin: 0 auto;
  position: relative;
} 

.buttons {
  display: table;
  height: 100%;
  width: 100%;
}

.containerbtn {
  display: table-cell;
  padding: 1em;
  text-align: center;
  vertical-align: middle;
  display: flex;
  flex-direction: row;
}

/*Flores en las esquinas */
.tip-nota::before{
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: -40px;
  bottom: 0;
  aspect-ratio: 1/1;
  background-image: url('/XV/XVB-pur/media/notadere.png');
  background-repeat: no-repeat;
  background-size: 154px 154px; 
   transform: scaleX(-1) scaleY(-1);
  opacity: 1; 
  z-index: 9;
   animation: fadeInLeft 7s ease-in-out forwards infinite;
}
.tip-nota::after{
  content: '';
  position: absolute;
  top:0;
  right: 0;
  left: -40px;
  bottom: 50px;
  background-image: url('/XV/XVB-pur/media/nota2.png');
  background-repeat: no-repeat;
  background-size: 154px 154px; 
   transform: scaleX(-1) scaleY(-1);
  opacity: 1; 
  z-index: 9;
   animation: fadeInRight 7s ease-in-out forwards infinite;
}
.tip-nota::before {
  background-position: top right 100%, bottom left 100%; 

}
.tip-nota::after {
  background-position: top left 100%, bottom left 100%;
}
.tip-nota{
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 100%;
  height: 250px;
  background-color: #ffffff;
  flex-direction: column;
  z-index: 2;
  overflow: hidden;
}

.tip-nota h1{
  color: var(--Invitacion3-OBSIDIAN-BLACK, #4B188E);
text-align: center;
font-family: "Cormorant Garamond";
font-size: 40px;
font-style: italic;
font-weight: 500;
line-height: 37px; /* 92.5% */
}


.notas{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 250px;
overflow: hidden;
background: var(--Invitacion3-OBSIDIAN-BLACK, #4B188E);
}

.notas .separator-line5 {
    width:95px; /* Ancho de la línea */
    height: 4px; /* Grosor de la línea */
    stroke: var(--Principal-500-501, #ffffff);
    background-color: #ffffff; /* Color de la línea */
    position: absolute;
    display: flex;
    float: right;
    right: -18%;
      z-index: 1;
}

.notas .separator-line6 {
    width:95px; /* Ancho de la línea */
    height: 4px; /* Grosor de la línea */
    stroke: var(--Principal-500-501, #ffffff);
    background-color: #ffffff; /* Color de la línea */
    position: absolute;
    display: flex;
    float: left;
    left: -18%;
      z-index: 1;
}

.notas .uno, .dos, .tres{
  background-color: #00000000;
  position: relative;
}
.notas .uno p {
  color: var(--Shade-1, #FFF);
font-family: "Cormorant Garamond";
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 20px; 
width: 300px;
margin: 0;
position: relative;
text-align: left;
top: 15px;
 z-index: 2;

}

.notas .dos p {
  color: var(--Shade-1, #FFF);
font-family: "Cormorant Garamond";
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 20px;
width: 300px;
margin: 0 auto;
margin: 0;
position: relative;
text-align: right;
top: 15px;
 z-index: 2;

}
.notas .tres p {
  color: var(--Shade-1, #FFF);
font-family: "Cormorant Garamond";
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 20px; 
width: 300px;
margin: 0 auto;
position: relative;
text-align: left;
top: 15px;
 z-index: 2;
}

.separador{
  position: relative;
  height: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;

  
}

.separador img{
  width: 200px;
  height: 60px;
  aspect-ratio: 157/50;
  margin: 0 auto;


}
.separador h1{
  color: var(--Invitacion3-OBSIDIAN-BLACK, #161616);
text-align: center;
font-family: "Cormorant Garamond";
font-size: 40px;
font-style: italic;
font-weight: 500;
line-height: 37px; /* 92.5% */
}

.regalos{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 250px;

opacity: 0.98;
overflow: hidden;
background: var(--Invitacion3-Crimson, #623FB5);
}

.regalos img{
  height: 350px;
  width: 360px;
  opacity: 0.06;
  float: left;
  left: -60px;
  position: absolute;
}
.regalos .container3{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.regalos h3{
  color: var(--Shade-1, #FFF);
text-align: center;
font-family: "Cormorant Garamond";
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 20px;
width: 80%;
}
.regalos h2{
  color: var(--Shade-1, #FFF);
text-align: center;
font-family: "Cormorant Garamond";
font-size: 25px;
font-style: normal;
font-weight: 700;
line-height: 26px;
width: 80%;
}



.frase{
  position: relative;
  justify-content: center;
  height: 250px;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  text-align: center;
}
.frase h1{
  color: var(--Invitacion3-OBSIDIAN-BLACK, #161616);
text-align: center;
font-family: "Cormorant Garamond";
font-size: 40px;
font-style: italic;
font-weight: 500;
line-height: 37px;
width: 80%;
margin: 0 auto;
top: 10%;
position: relative;
}

.frase h2{
text-align: center;
top: 20%;
color: var(--Invitacion3-OBSIDIAN-BLACK, #161616);
text-align: center;
font-family: "Cormorant Garamond";
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 20px; /* 100% */
position: relative;
width: 95%;
margin: 0 auto;
}
.frase svg{
  top: 18%;
  position: relative;
}
.frase img{
  position: absolute;
  width: 300px;
  height: 300px;
  top: 5%;
  right: 10%;
  margin: 0 auto;
  bottom: 50%;
  opacity: 0.5;
}


.fotos{
   display: flex;
   flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
overflow: hidden;
  height: 300px;
  width: 100%;
  z-index: 2;
  gap: 2vh;
  background: #ffffff;
  overflow: hidden;
}
.fotos .icon-outer2{
  top: 8px;
  position: relative;
  width: 100%;
height: 450px;
flex-shrink: 0;
display: flex;
z-index: 16;
justify-content: center;
margin: 0 auto;
display: flex;
flex-direction: column;
text-align: center;
background: #816DDE;
}
.fotos .icon-outer2 img{
  width: 250px;
  height: 250px;
  aspect-ratio: 4/3;
  position: relative;
  border-style: solid;
  border-color: #ffffff00;
  border-left-width: 20px;
  border-right-width: 20px;
  border-top-width: 20px;
  border-bottom-width: 50px;
  margin: 0 auto;
}
.foto-info p{
  top: 10px;
  position: relative;
  color: #191818;
text-align: center;
font-family: "Cormorant Garamond";
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 20px; 
width: 95%;
margin: 0 auto;
z-index: 66;
}
.foto-info{
  top: 150px;
  z-index: 4;
  height: 70px;
  position: relative;
  width: 100%;
  max-width: 100%;
  background-color: #ffffff00;

}
.foto-info .buttons {
  display: table;
  height: 100%;
  width: 100%;
  margin-bottom: 10px;
  margin: 0 auto;
   position: relative;
   justify-content: center;

}
.foto-info .btnfos {
  color: #FFF;
text-align: center;
font-family: "Cormorant Garamond";
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 20px;

}
.foto-info .btnfos-3 {
  background: #816DDE;
  border: 3px solid #fafafa;
  border-radius: 1rem;
  box-shadow: 0px 3px 0 #816DDE, 2px 4px 6px #816DDE;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: all 150ms linear;
          transition: all 150ms linear;
  margin: 0 auto;
  position: relative;
  width: 90%;
  display: flex;
height: 43px;
padding: 10px;
justify-content: center;
align-items: center;
gap: 10px;
flex-shrink: 0;

}
.fotos .fotito{
  top: -10px;
  position: relative;
  width: 300px;
  height: 400px;
  max-width: 350px;
  opacity: 0.6;
  max-height: 420px;
  transform: rotate(-89.981deg);
  flex-shrink: 0;
  aspect-ratio: 172.21/291.80;

}

.separador2{
  position: relative;
  top: 10px;
  z-index: 25;
  height: 15px;
  width: 100%;
  background: #10101000;
}
.separador3 h1{
  height: 100px;
  top: 10px;
  background-color: #136a6600;
  align-items: center;
  font-size: 30px;
  color: #816DDE;
  text-align: center;
  position: relative;
  top: 20px;
  margin-bottom: 30px;
}
.confirmacion{
  position:relative;
  text-align:center;
  width: 100%;
  height: 100%;
  background: #ffffff;
  align-items: center;
  height: 600px;
  display: flex;
  z-index: 20;
  top: -70px;
  flex-direction: column;
  overflow: hidden;
 }
.petalito{
  position: absolute;
  width: 60.889px;
  height: 60.281px;
  top: 85px;
  transform: rotate(-98.398deg);
  aspect-ratio: 131.89/111.28;
}
.petalote{
  position: absolute;
  top: 366px;
  width: 165px;
  height: 108px;
  transform: rotate(-14.459deg);
  flex-shrink: 0;
  aspect-ratio: 55/36;
}
 .confirmacion .headerimage {
  height:450px;
  width:85%;
  top: 80px;
  position:relative;
  border-radius: 11px;
  z-index: 1;
  background: var(--Neutral-200-196, #F8F7F6);
  display: flex;
  box-shadow: 0px 4px 5.3px 4px rgba(16, 16, 16, 0.915);
}
.headerimage h3{
 padding: 2px 5px;
  background: #4B188E;
color: var(--Shade-1, #FFF);
font-family: "Cormorant Garamond";
font-size: 28px;
font-style: normal;
font-weight: 600;
line-height: normal;
width: 100%;
margin: 0 auto;
position: relative;
}
.headerimage .popup-content {
  background: var(--Neutral-200-196, #FBFBFB );
  border-radius: 5px;
  width: 100%;
  height: 450px;
  max-height: 450px;
  bottom: 20px;
  padding: 0;
  text-align: center;
  box-shadow: 0px 4px 5.3px 4px rgba(0, 0, 0, 0.28);
}
.headerimage .options {
  margin-top: 20px;
  
}
.headerimage .options button {
  margin: 5px;
  padding: 2px 10px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  z-index: 8;
  border: 1.5px solid var(--Principal-500-500, #9D7655);
}
#name{
  color: var(--Neutral-200-201, #0a0a09);
text-align: center;
font-family: "Playfair Display";
font-size: 21.88px;
font-style: normal;
font-weight: 400;
line-height: normal;
background-color: #F8F7F6;
border-top: #9D7655;
border-left: #136a6600;
border-right: #136a6600;
height: auto;
top: 0px;
position: relative;

}
#mensaje{
  color: var(--Neutral-200-201, #0a0a09);
text-align: center;
font-family: "Playfair Display";
font-size: 15.88px;
font-style: normal;
font-weight: 400;
line-height: normal;
background-color: #F8F7F6;
border-top: #9D7655;
border-left: #136a6600;
border-right: #136a6600;
height: 85px;
top:65px;
width: 85%;
}
#confirm {
  color: var(--Secondary-400-396, #F6F5F2);
font-family: "Playfair Display";
font-size: 20.34px;
font-style: normal;
font-weight: 400;
line-height: normal;
  color: white;
  background: var(--Principal-500-499, #4B188E);
}
#notConfirm {
  font-family: "Playfair Display";
font-size: 20.34px;
font-style: normal;
font-weight: 400;
line-height: normal;
  border-radius: 9px;

background: var(--Principal-500-500, #816DDE);
  color: white;
}
.confirmacion::before{
   content: '';
  position: absolute;
  top: -14px;
  left: 10%;
  width: 444px;
  height: 444px;
  background: url("/XV/XVPur/media/blur.png") no-repeat;
  aspect-ratio: 1/1;
  background-size: cover;
  z-index: -1;
}
.confirmacion::after {
  content: '';
  position: absolute;
  top: 350px;
  right: 60%;
  width: 444px;
  height: 444px;
  background: url("/XV/XVPur/media/blur.png") no-repeat ;
  aspect-ratio: 1/1;
  background-size: cover;
}



.whatsapp{
  margin: 0 80;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: column;
  top: -20px;
  justify-content: center;
  background-color: #ffffff;
  
}
.whatsapp h3{
  color: var(--Shade-1, #FFF);
  background: var(--Principal-500-499, #4B188E);
color: var(--Shade-1, #FFF);
font-family: "Cormorant Garamond";
font-size: 28px;
font-style: normal;
font-weight: 600;
line-height: normal;;
width: 100% ;
text-align: center;

}
.whatsapp h6{
 color: var(--Invitacion3-OBSIDIAN-BLACK, #161616);
text-align: center;
font-family: "Cormorant Garamond";
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 20px; /* 100% */
width: 80%;
margin: 0 auto;
}
.botonwhat .css-button {
  top: 0px;
  margin: 0 auto;
  color: #ffffff;
	font-size: 27px;
	border-radius: 21px;
	border: solid 2px #1c1b1ba9;
	text-shadow: 1px 1px 0px #1c1b1ba9;
	box-shadow: inset 1px 1px 0px -34px #1c1b1ba9;
	text-decoration: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	font-family: Georgia;
	background: linear-gradient(90deg,#000000 23%, #000000 22% );
	display: inline-flex;
	align-items: center;
	padding: 0; /* Posiciona al 50% desde la izquierda del contenedor */
  margin-bottom: 40px;
  
}
.botonwhat .css-button:hover {
	background: linear-gradient(90deg, #000000 22%, #000000 24%);
}
.botonwhat .css-button-text {
	position: relative;
	padding: 10px 30px;
}
.botonwhat  .css-button-icon {
	position: relative;
	border-right: 1px solid #ffffff29;
	box-shadow: inset rgb(0 0 0 / 14%) -1px 0 0;
	padding: 10px 14px;
  color: white;
}
.botonwhat  .css-button-icon:hover{
  color: #fff;
}
.whatsapp h1{
  color: #000;
text-align: center;
font-family: Carattere;
font-size: 39.06px;
font-style: normal;
font-weight: 400;
line-height: 38.5px; /* 98.566% */
letter-spacing: 0.781px;

width: 80%;
margin: 0 auto;
top: 50px;
position: relative;
}
.whatsapp img{
  width: 300px;
  height: 150px;
  top: 0px;
  position: relative;
}



.mensaje{
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  height: 750px;
  max-height: 750px;
  width: 100%;
  background: #fff ;
  gap: 4vh;

}


.mensaje #mensajeuno{
  padding: 20px 20px;
  color: #727272;
font-family: Poppins;
font-size: 14px;
font-style: normal;
justify-content: center;
font-weight: 400;
line-height: 14px; /* 100% */
background-color: #ffffff;
border-top: #9D7655;
border-left: #136a6600;
border-right: #136a6600;
height: 105px;
top: 0px;
position: relative;
width: 300px;
}
#MensForm{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1vh;
  height: 500px;
}

.mensaje #nameuno{
    padding: 20px 20px;
  color: #727272;
font-family: Poppins;
font-size: 14px;
font-style: normal;
justify-content: center;
font-weight: 400;
line-height: 14px; /* 100% */
background-color: #ffffff;
border-top: #9D7655;
border-left: #136a6600;
border-right: #136a6600;
height: 35px;
position: relative;
top: 5px;
width: 300px;
}

.mensaje img{
  height: 250px;
  width: 243px;

  position: relative;
  transform: rotate(-3.535deg);
  flex-shrink: 0;
  aspect-ratio: 197.05/204.22;
}

.mensaje h1{
  color: #4B188E;
text-align: center;
font-family: Carattere;
font-size: 55px;
font-style: normal;
font-weight: 400;
line-height: normal;
top: 0px;
position: relative;
}


.mensaje .btnfos {
  font-family:'Merriweather', serif;
  cursor: pointer;
  display: block;
  position: relative;
  text-decoration: none;
  border-radius: 3rem;
    color: #FFF;
text-align: center;
font-family: "Cormorant Garamond";
font-size: 25px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 25px */
z-index: 88;
}
.mensaje .btnfos-3 {
  background: #816DDE;
  border: 3px solid #fafafa;
  border-radius: 1rem;
  box-shadow: 0px 3px 0 #816DDE, 2px 4px 6px #a77a7a;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: all 150ms linear;
          transition: all 150ms linear;
          margin: 0 auto;
  position: relative;
  width: 50%;
  margin-top: 30px;
  display: flex;
height: 43px;
padding: 10px;
justify-content: center;
align-items: center;
gap: 10px;
flex-shrink: 0;

}

.titulo4 h1{
  color: var(--Invitacion3-OBSIDIAN-BLACK, #161616);
text-align: center;
font-family: Carattere;
font-size: 65px;
font-style: normal;
font-weight: 400;
line-height: normal;
position: relative;
top: 60px;
}
.introduccion img{
  position: absolute;
  width: 273.947px;
  height: 169.27px;
  flex-shrink: 0;
  aspect-ratio: 273.95/169.27;
  top: -3%;
  float: left;
  left: -20%;

}


.copyright {
  background: var(--Principal-500-500, #4B188E);
  position: relative;
  text-align:center;
  width: 100%;
  height: 95px;
  top: 90px;
  display: block;
  z-index: 1;
  
}
.copyright .svg-up {
  display: inline-block;
  position: relative;
  top: 90px;
  left: 50%;
  margin-left: -2px;
  margin-top: -50px;
  top: 0;
  left: 0;
  margin: -50 auto 0;
  z-index: 2;
}
.copyright .arrow-up {
  position: relative;
  left: 50%;
  width: 50px;
  height: 50px;
  top: -50px;
  color: #1b1a1a;
  line-height: 1.9;
  z-index: 99;
  display: flex;
  background-color: #16161600;
  
}
.copyright ul {
  width: 100%;
  margin-top: 5px;
  justify-content: center;
}
.copyright li {
  color: hsl(30, 9%, 96%);
  font-size: 14px;
  list-style: none;
}

.copyright .CTA {
  margin-top: -50px;
}
.copyright .CTA li a {
  color: #ffffff;
  
}
.copyright .infos{
  margin-top: -20px;
  z-index: 5;
}


/*ANIMACIONES*/
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.bounce {
  animation: bounce 1.5s ease-in-out infinite;
  display: inline-block; /* importante para que funcione bien */
}
.bounce {
  animation: none;
}
.bounce.visible {
  animation: bounce 1.5s ease-in-out infinite;
}


    .slide-in-right {
      opacity: 0;
      transform: translateX(100px);
      transition: all 0.7s ease-out;
    }
    
    .slide-in-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* Animación para títulos desde arriba */
.slide-in-top {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 1.5s ease-out;
}

.slide-in-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 1.5s ease-in-out;
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}


@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 0.8;
    transform: translateX(0);
    z-index: 1;
  }
}

 @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 0.8;
      transform: translateX(0);
    }
  }


.separador2 h1{
  align-items: center;
  font-size: 30px;
}