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: #180004e6;
    color: white;
    z-index: 10;
  }

  .onda{
    margin-top: 20%;
    position: relative;

  }
  #music-prompt h4{
    top: 15px;
      width: 90%;
      position: relative;
      font-size: 20px;

  }
   #music-prompt h2{
    bottom: 30px;
      width: 90%;
      position: relative;
      font-size: 25px;

  }
  .onda:nth-child(1){
    background-image: url(https://i.postimg.cc/VNVqXwjf/wave.png);
    animation: animate 10s linear infinite;
    animation-direction: reverse;
  }
  #content {
    display: none; /* Ocultar contenido hasta que el usuario responda */
    padding: 20px;
}
.btn-music{
    top: 90%;
    margin-top: 15px;
    display: inline-flex;
    padding: 5px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 9px;
    border: 1px solid var(--Secondary-400-403, #3C3429);
    background: var(--Tertiary-300-297, #F1F1EA);
}
.btn-music h1{
    color: #3C3429;
    /* Serif/H6 */
    font-family: "Playfair Display";
    font-size: 20.15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;

} 

/*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 #710014;
  border-bottom: 2px solid #710014;
  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 #710014;
  top: 170px;
}
.wheel {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: #710014;
  position: relative;
  
  height: 4px;
  width: 4px;
  border: 2px solid #710014;
  -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: linear-gradient(180deg,#0916362a, #28282885 25.48%, #28282843 64.42%), url("./media/fotoportada.png");
    background-size:cover;
    background-position: center;
    background-repeat: repeat;
    min-height: 100vh;
display: flex;
    max-width: 100%;
    overflow: hidden;
    flex-direction: column;
 }

 .logo-año{
    position: absolute;
    color: #fff;
    top: 5px;
    left: 1%;
font-family: "Cormorant Garamond";
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: 45px; /* 20% */
opacity: 0.8;
 }
.titulo-sub{
    position: relative;
    width: 100%;
    top: 55%;
    bottom: 50%;
    
  }
  .sub{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    position: relative;
     top: 55%;
    bottom: 60%;

  }

.titulo-sub .titulo1 h1{
    color: var(--Shade-1, #ffffff);
    text-shadow: 0px 4px 4px #09163680;
    font-family: Carattere;
    font-size: 70.29px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;

  }

  .titulo-sub .titulo2 h1{
    color: var(--Shade-1, #FFF);
    text-shadow: 0px 4px 4px rgba(9, 22, 54, 0.50);
    font-family: Carattere;
    font-size: 80.29px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-left: 15%;
    -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
  }

.sub h2{
    color: #FFF;
    font-family: "Cormorant Garamond";
    font-size: 27.25px;
    font-style: normal;
    font-weight: 500;
    line-height: 39px;
    position: relative;
}
 .sub .separator-line1{
    width: 80%;
    position: relative;
    background-color: #ffff;
  top: 0px;
  text-align: center;
  justify-content: center;
  align-items: center;
  z-index: 5;
  height: 2px;
  margin: 0 auto;
}
.introduccion .quote-icon-bg {
    height: auto;
    color: #9d7655; /* Color del ícono */
    font-size: 40px; /* 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 */
    bottom: -20px;
    position: relative;
  }
  
/*CONTENEDOR introduccion */

.introduccion{
  position: relative;
  width: 100%;
  height: 750px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 6;
    gap: 2rem;
  margin: 0 auto;

}

.introduccion .titulo-icon{
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.introduccion .titulo3 h1{
color: var(--Invitacion3-OBSIDIAN-BLACK, #161616);
font-family: Carattere;
font-size: 31.04px;
font-style: normal;
font-weight: 400;
line-height: normal;
top: 50px;
position: relative;
}

.introduccion .icon{
  text-align: center;
transform: rotate(14.979deg);
align-items: center;
position: relative;
}
.introduccion i{
  font-size: 50px;
  color: #710014;
}

.introduccion #p-l{
  color: var(--Invitacion3-Crimson, #710014);
text-align: center;
font-family: "Cormorant Garamond";
font-size: 25px;
font-style: normal;
font-weight: 400;
line-height: 100%; 
width: 90%;
margin: 0 auto;
margin-top: 30px;
}
.introduccion img {
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  top: 45px;
margin: 0 auto;
width: 250px;
}


.dedicatoria{
  position: relative;
  width: 100%;
  top: 20px;
  height: 400px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  z-index: 1;
}
.dedicatoria #p-s{
  color: var(--Invitacion3-OBSIDIAN-BLACK, #161616);
text-align: center;
font-family: "Cormorant Garamond";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 22px;
width: 90%;
margin: 0 auto;
position: relative;
}
.dedicatoria .text{
    text-align: center;
    height: auto;
    position: relative;
    width: 90%;
    margin: 0 auto;
    top: 30px;
}

.text .separator-line2{
  width: 50%;
  position: relative;
  background-color: #B38F6F;
  top: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
  z-index: 5;
  height: 1px;
  margin: 0 auto;
  margin-bottom: 10px;
  }
  .text .separator-line3{
  width: 50%;
  position: relative;
  background-color: #B38F6F;
  bottom: 0px;
  text-align: center;
  justify-content: center;
  align-items: center;
  z-index: 5;
  height: 1px;
  margin: 0 auto;
  margin-bottom: 10px;
  }
.text h2:last-of-type {
    margin-top: -13px; /* Reduzco el espacio entre el círculo y el segundo h1 */
    margin-left: -9px;
}
.text h2{
  color: #B38F6F;
text-align: center;
font-family: "Cormorant Garamond";
font-size: 25.06px;
font-style: italic;
font-weight: 700;
line-height: normal;



}
.text h3{
  color: #B38F6F;
text-align: center;
font-family: "Cormorant Garamond";
font-size: 25.06px;
font-style: italic;
font-weight: 700;
line-height: normal;
}

/* Marco decorativo con imágenes de flores */
.introduccion::before{
  content: '';
  position: absolute;
  width: 121.013px;
height: 121.013px;

aspect-ratio: 121.01/121.01;
  background: url("./media/laurel3.png") rgba(211, 211, 211, 0);
  background-repeat: no-repeat;
  opacity: 0.5; 
  border-radius: 1.7rem;
  z-index: 4;
  transform: rotate(-27.608deg);
   animation: fadeInRight 7s ease-in-out forwards infinite;
}

.introduccion::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 121.013px;
height: 121.013px;
transform: rotate(27.608deg);
 aspect-ratio: 121.01/121.01;
flex-shrink: 0;
background: url("./media/laurelizqui.png") rgba(211, 211, 211, 0);
  z-index: 4;
  opacity: 0.7; 
  border-radius: 1.7rem;
  animation: fadeInLeft 7s ease-in-out forwards infinite;
}

.introduccion::before {
  top: 550px;
  right: -40px;
  background-position: top right -40%, bottom right 5%; 
  z-index: -10;
  position: absolute;

}

.introduccion::after {
  margin-top: 700px;
 z-index: -1;
 left: -40px;



  background-position: left -45%, bottom left 10%;
}



.franja{
  position: relative;
  background: #710014;
  height: 98px;
  overflow: hidden;
  justify-content: center;
  text-align: center;

}

.franja h2{
  color: var(--Shade-1, #FFF);
text-align: center;
font-family: Ramaraja;
font-size: 27.3px;
font-style: normal;
font-weight: 400;
line-height: normal;
padding: 15px 2px;
}
.fecha{
  top: 40px;
  position: relative;
  height: 150px;
  overflow: hidden;
}
.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;
}
.calendar .separator-line8 {
   line-height: normal;
  justify-content: center;
    width: 2px; /* Ancho de la línea */
    height: 50px; /* Grosor de la línea */
    stroke: var(--Principal-500-501, #710014);
    position: relative;
    display: flex;
    background-color: #710014; /* Color de la línea */
    border-radius: 10px; /* Bordes redondeados para un diseño suave */
}
.calendar .separator-line9 {
  line-height: normal;
  justify-content: center;
    width: 2px; /* Ancho de la línea */
    height: 50px; /* Grosor de la línea */
    stroke: var(--Principal-500-501, #710014);
    position: relative;
    display: flex;
    background-color: #710014; /* Color de la línea */
    border-radius: 10px; /* Bordes redondeados para un diseño suave */
}
.calendar h6 {
   color: #710014;
  text-align: center;
  font-family: Ramaraja;
  font-size: 27.3px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  
}
.numero h1 {
   color: #710014;
  text-align: center;
  font-family: Ramaraja;
  font-size: 57.3px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}



.frase{
  position: relative;
  justify-content: center;
  height: 250px;
  width: 100%;
  overflow: hidden;
  opacity: 0.8;
  background: linear-gradient(#88888800, #88888800), url("./media/foto2.png");
  background-position: center;
  background-position-y: -40px;
  background-size: cover;
  background-repeat: no-repeat;
}
.frase h1{
  color: #FFF;
text-align: center;
font-family: "Cormorant Garamond";
font-size: 25px;
font-style: normal;
font-weight: 700;
line-height: 30px;
width: 80%;
margin: 0 auto;
top: 40%;
position: relative;
}

.frase h2{
  color: #FFF;
text-align: center;
top: 50%;
/* Cursiva2/H6 */
font-family: Carattere;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
position: relative;
float: right;
right: 10px;
}


.semi-portada{
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  overflow: hidden;
  height: 580px;
background-image: linear-gradient(#ffffffad, #ffffffad), url("media/fotodiv.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;


}
.semi-portada .titulo-sub{
    position: relative;
    width: 100%;
    top: -5%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }

.semi-portada .titulo-sub .titulo1 h1{
   color: var(--Invitacion3-OBSIDIAN-BLACK, #161616);
  font-family: Carattere;
  font-size: 66.29px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
    line-height: 1.2;
    margin-left: 1%;

  }
 .semi-portada .titulo-sub .titulo2 h1{
 color: var(--Invitacion3-OBSIDIAN-BLACK, #161616);
font-family: Carattere;
font-size: 66.29px;
font-style: normal;
font-weight: 400;
line-height: normal;
    margin-left: 2%;
  
  }
.semi-portada .foto-cas{
  margin: 0 auto;
  position: relative;
  width: 176px;
  display: flex;
  height: 270px;
  bottom: -68px;
  z-index: 8;
  border-radius: 100px 100px 0px 0px;
border: 9px solid var(--Invitacion3-Crimson, #710014);
background: url("media/fotodiv.png");
background-position: 50% 60%;
background-size: cover;
}

.semi-portada .separator-line4 {
    width: 100%; /* Ancho de la línea */
    height: 9px; /* Grosor de la línea */
    stroke: var(--Principal-500-501, #710014);
    background-color: #710014; /* Color de la línea */
    position: relative;
    display: flex;
      bottom: -68px;
      z-index: 55;
}


.infor{
    margin: 0;
  padding: 0; 
  width: 100%;
  background-color: #ffffff;
  align-items: center;
  height: 850px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.infor .plans-container{
  top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  border-radius: 1.7rem;
  height: 760px;
  z-index: 3;
  position: relative; 
  overflow: hidden;
  text-align: center;
  
}

.icon-outer1{
  top: 8px;
  position: absolute;
  width: 97px;
height: 97px;
flex-shrink: 0;
display: flex;
left: 50%;
z-index: 4;
  transform: translateX(-50%);
justify-content: center;
fill: var(--Invitacion3-Crimson, #710014);
filter: drop-shadow(3px 2px 4px rgba(0, 0, 0, 0.25));
}

.icon1{
  position: absolute;
  height:97px;
  width: 97px;
  background-color:  #710014;
  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: -10px;
  z-index: 5;
  background: var(--Invitacion3-Crimson, #710014);
  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: -50px;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 520px;
  border-radius: 0px 0px 25px 25px;
border: 3px solid var(--Invitacion3-Crimson, #710014);
box-shadow: 3px 2px 4px 0px rgba(0, 0, 0, 0.25);
}

.infor .container2 h1{
color: var(--Invitacion3-Crimson, #710014);
text-align: center;
font-family: "Cormorant Garamond";
font-size: 40px;
font-style: italic;
font-weight: 500;
line-height: 37px; 
margin-top: 50px;
}

.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: var(--Invitacion3-Crimson, #710014);
text-align: center;
font-family: "Cormorant Garamond";
font-size: 55px;
font-style: italic;
font-weight: 700;
line-height: 37px; /* 67.273% */
top: 45px;
position: relative;
}



.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, #161616);
text-align: center;
font-family: "Cormorant Garamond";
font-size: 40px;
font-style: italic;
font-weight: 500;
line-height: 37px; /* 92.5% */
}

/* Marco decorativo con imágenes de flores */
.tip-nota::before{
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: -40px;
  bottom: 0;
  aspect-ratio: 1/1;
  background-image: url('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('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::after {
  content: '';
  position: absolute;
  top: -200px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('media/notadere.png');
  background-repeat: no-repeat;
   background-size: 156px 150px; 
  opacity: 1; 
  border-radius: 1.7rem;
  z-index: 9;
  animation: fadeInRight 7s ease-in-out forwards infinite;
}
Flores en las esquinas */
.tip-nota::before {
  background-position: top right 100%, bottom left 100%; 

}

.tip-nota::after {
  background-position: top left 100%, bottom left 100%;
}




.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: #710014;
  border: 3px solid #7D6A8B;
  border-radius: 1rem;
  box-shadow: 0px 3px 0 #c5b1d4, 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: 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: #8e7863;
  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;
}


.notas{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 200px;
opacity: 0.98;
overflow: hidden;
background: var(--Invitacion3-OBSIDIAN-BLACK, #161616);
}

.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: relative;
    display: flex;
    float: rleftight;
    right: -50%;
      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: relative;
    display: flex;
    float: left;
    left: -50%;
      z-index: 1;
}

.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: 85%;
margin: 0 auto;
float: left;
left: 50px;
position: relative;
text-align: left;
 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: 70%;
margin: 0 auto;
float: right;
right: 50px;
position: relative;
text-align: right;
top: 20px;
 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;


}


.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, #710014);
}

.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%;
}


.reloj {
  width: 100%;
  overflow: hidden;
    height: 800px;
    z-index: 5;
    background-repeat: repeat;
    background-position: center, center;
    background: linear-gradient(#ffffffda, #ffffff), url("https://media.istockphoto.com/id/1636233906/es/foto/fondo-abstracto-de-textura-de-tela-blanca-onda-suave-de-tela-arrugas-de-sat%C3%A9n-seda-y-algod%C3%B3n.jpg?s=612x612&w=0&k=20&c=9HkG6FSRWsUMj0CBILRf_hGqjte9UHmr-tYJkehry2s=");
    position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
        max-width: 100%;
  max-height: 800px;
  }
.reloj img{
  width: 250px;
  height: 60px;
  position: relative;
  top: -120px;
}

  .reloj-titulo {
    color: #000;
  text-align: center;
  font-family: Carattere;
  font-size: 39.06px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.5px;
  }

  .reloj .hp-countdown {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px 20px;
    border-radius: 29px;
    background: var(--Invitacion3-OBSIDIAN-BLACK, #161616);
    text-align: center;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--Shade-1, #FFF);
  text-align: center;
  font-family: Ramaraja;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  gap: 1vh;
  }
  .reloj .cd--numbers {
    color: var(--Shade-1, #FFF);
text-align: center;
font-family: Ramaraja;
font-size: 48px;
font-style: normal;
font-weight: 400;
line-height: normal;

}

.reloj::before{
  content: '';
  position: absolute;
  top: 170px;
  right: 0;
  left: -80px;
  bottom: 0;
  aspect-ratio: 1/1;
  background-image: url('media/reloj2.png');
  background-repeat: no-repeat;
  background-size: 204px 204px; 
  opacity: 1; 
  z-index: 29;

   animation: fadeInRight 7s ease-in-out forwards infinite;
}
.reloj::after{
  content: '';
  position: absolute;
  top:540px;
  left: 0;
  right: -20px;
  bottom: 0px;
  background-image: url('media/reloj3.png');
  background-repeat: no-repeat;
  background-size: 204px 204px; 
  opacity: 1; 
  z-index: 28;
   animation: fadeInRight 7s ease-in-out forwards infinite;
}

.reloj::before {
  
  background-position: top right 100%, bottom left 100%; 

}

.reloj::after {
  background-position: top right -10%, bottom left 10%;
}


.fotos{
   display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
overflow: hidden;
  height: 350px;
  width: 100%;
  z-index: 2;
  background-image: linear-gradient(#3131317c, #3131317c),url("media/foto2.png");
   background-size: cover;
  background-repeat: no-repeat;
  background-position-y: 50px;
}

.fotos .icon-outer2{
  top: 12px;
  position: absolute;
  width: 97px;
height: 97px;
flex-shrink: 0;
display: flex;
left: 50%;
z-index: 16;
  transform: translateX(-50%);
justify-content: center;
fill: var(--Invitacion3-Crimson, #710014);
filter: drop-shadow(3px 2px 4px rgba(0, 0, 0, 0.25));
}

.fotos .icon2{
  position: absolute;
  height:97px;
  width: 97px;
  background-color:  #710014;
  border-radius: 50%;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  
}

.wavita{
  position: relative;
  z-index: 9;
  width: 600px;
  top: 30px;
}
.wavita2{
  position: relative;
  z-index: 9;
  top: -10px;
  width: 100%;
}
.foto-info{
  top: -10%;
  z-index: 4;
  height: 250px;
  position: relative;
  max-width: 100%;
  background-position: left -40%;
  background-position: center center;
 
}

.foto-info p{
  width: 80%;
  color: #FFF;
text-align: center;
font-family: "Cormorant Garamond";
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 20px; /* 100% */
margin: 0 auto;
position: relative;
top: 50px;

}


.foto-info .buttons {
  display: table;
  height: 100%;
  width: 100%;
  margin-bottom: 10px;
  margin: 0 auto;
   position: relative;
   justify-content: center;
   top: 20px;
}
.foto-info .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 */
}
.foto-info .btnfos-3 {
  background: #710014;
  border: 3px solid #fafafa;
  border-radius: 1rem;
  box-shadow: 0px 3px 0 #710014, 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: 40px;
  display: flex;
height: 43px;
padding: 10px;
justify-content: center;
align-items: center;
gap: 10px;
flex-shrink: 0;

}


.mensaje{
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  height: 750px;
  max-height: 750px;
  width: 100%;
  background-image: url(https://texturelabs.org/wp-content/uploads/Texturelabs_Paper_309S.jpg) ;
  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;
  top: -10px;
}

.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: var(--Invitacion3-OBSIDIAN-BLACK, #161616);
font-family: Carattere;
font-size: 39.06px;
font-style: normal;
font-weight: 400;
line-height: 38.5px; 
transform: rotate(-3.537deg);
top: -10px;
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;
top: -100px;
}
.mensaje .btnfos-3 {
  background: #710014;
  border: 3px solid #fafafa;
  border-radius: 1rem;
  box-shadow: 0px 3px 0 #710014, 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: 110px;
  display: flex;
height: 43px;
padding: 10px;
justify-content: center;
align-items: center;
gap: 10px;
flex-shrink: 0;

}





.confirmacion{
  position:relative;
  text-align:center;
  width: 100%; 
  height: 100%;
  background: url("media/confirmacion.png");
  align-items: center;
  height: 750px;
  margin-top: -60px;
  display: flex;
  flex-direction: column;
 }

 .confirmacion img{
  width: 194px;
  height: 190px;
  flex-shrink: 0;
  aspect-ratio: 97/40;
  position: relative;
  top: 40px;
 }
 .confirmacion .headerimage {
  height:400px;
  width:90%;
  top: 180px;
  position:relative;
  border-radius: 11px;
  z-index: 1;
  background: var(--Neutral-200-196, #F8F7F6);
  display: flex;
  box-shadow: 0px 4px 5.3px 4px rgba(235, 232, 232, 0.915);
}

.headerimage h3{
 padding: 2px 5px;
  background: #161616;
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, #F8F7F6);
  border-radius: 5px;
  width: 100%;

  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;
  
  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, #710014);
}
#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, #710015b3);
  color: white;
}



.whatsapp{
  margin: 0 80;
  width: 100%;
  height: 550px;
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: column;
  top: 0px;
  justify-content: center;
  
}
.whatsapp h3{
  color: var(--Shade-1, #FFF);
  background: var(--Principal-500-499, #710014);
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 i{
  font-size: 50px;
  color: #710014;
}
.whatsapp .css-button i{
  font-size: 50px;
  color: #ffffff;
}
.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;
margin-bottom: 40px;

}

.whatsapp img{
  width: 250px;
  height: 80px;
  top: 0px;
  position: relative;
}




.copyright {
  background: var(--Principal-500-500, #710014);
  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);
    }
  }


