/*----------------------------------
	General
------------------------------------*/


@font-face {
        font-family: "Titles";
        src: url(../fonts/DancingScript-VariableFont_wght.ttf);
        }
@font-face {
     font-family: "Titles";
src: url(../fonts/CormorantGaramond-LightItalic.ttf);
}


@font-face {
  font-family: "cinzel";
 src: url(../fonts/Cinzel-VariableFont_wght.ttf);
 }


   
  .row{
    justify-content: center;
  }
  /*activar solo cuando ya este el sobre*/
  html {
    overflow-x: hidden;
  }
  
  html, html a, body {
    -webkit-font-smoothing: antialiased;
  }
  
  html {
    font-size: 14px;
    -webkit-tap-highlight-color: transparent;
  }
  
  body {
      z-index: 1;
      overflow-x: hidden;
      background-color: #7e93a8!important;
          font-family: "Titles";
  }
 
 
  p{
        font-family: "Titles";
  }

  a:hover {
  text-decoration:none;
  }
/*________________Header_______________________*/

/* Estilos generales para el header */
header {
  position: fixed;
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000; /* Asegúrate de que el header esté siempre encima */
}

/* Estilo para el menú de hamburguesa */
.menu-toggle {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer; /* Hace que el cursor cambie a mano al pasar por encima */
  background: #393f4d;
  border-radius: 50%;
}
/* Estilos para las líneas del menú de hamburguesa */
.menu-toggle .hamburguer {
  position: relative;
  display: block;
  height: 1.5px; /* Reducido de 2px a 1.5px */
  width: 26px; /* Reducido de 50px a 35px */
  margin: 4px 0; /* Ajustado el margen para el nuevo tamaño */
  background-color: #fff;
  transition: all .3s ease-out;
}

/* Efecto cuando el menú está abierto */
.menu-toggle .hamburguer.open:first-child {
  transform: rotate(45deg);
  top: 10px; /* Ajustado para el nuevo tamaño */
}

.menu-toggle .hamburguer.open:last-child {
  transform: rotate(-45deg);
  bottom: 10px; /* Ajustado para el nuevo tamaño */
}

.menu-toggle .hamburguer.open:nth-child(2) {
  opacity: 0; /* Oculta la barra del medio cuando el menú está abierto */
}


/* Estilo para el nav oculto por defecto */
nav {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7e93a8;
  transition: all .3s ease-out .2s;
  padding: 0 20px;
}

/* Cuando el menú está abierto, se desplaza hacia abajo */
nav.open {
  top: 0;
  transition: all .3s ease-in 0s;
}

nav.open .nav-item {
  padding: 5px;
  letter-spacing: .2em;
  opacity: 1;
  transition-property: opacity, padding, letter-spacing;
  transition-duration: .5s, .3s, .3s;
  transition-delay: .5s, .4s, 0s;
  transition-timing-function: ease-in, ease-in, ease;
  color: #000!important;
  text-align: left;
}

nav.open .nav-item:hover {
  letter-spacing: .3em;
}

/* Estilo para cada ítem de navegación */
.nav-item {
  display: block;
  width: 100%;
  padding: 0;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0;
  transition-property: opacity, padding, letter-spacing, color;
  transition-duration: .2s, .2s, .2s, .3s;
  transition-delay: 0s, 0s, 0s, 0s;
  transition-timing-function: ease-out, ease-out, ease, ease;
}

.nav-item:hover {
  color: grey;
}



 
  /*----------------------------------
      Varios
  ------------------------------------*/

  ::-webkit-scrollbar{
      width: 10px;
      background-color: #000;
  }
  ::-webkit-scrollbar-track{
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.9);
      border-radius: 10px;
      background-color: #000;
  }
  ::-webkit-scrollbar-thumb{
      border-radius: 10px;
      background-color: #895e1e;
      background-image: -webkit-linear-gradient(90deg,transparent,rgba(0, 0, 0, 0.4) 50%,transparent,transparent)
  }

  a{
    color: #000!important;
  }


.text-black {
color:#000 !important;
}
.text-white{
  color: #fff!important;
}
p.text{
  color: #8c98a8;
}
.font-18 {
  font-size: 24px;
  }


 
  .title {
  font-family: "Titles";
  font-size: 40px;
  font-weight: 600;
  }
   
  .text{
        font-family: "Titles";
    font-size: 24px!important;
  }

  .m-0 {
  margin-bottom:0;
  }
  .m-10 {
  margin-bottom: 10px;
  }
  .m-20 {
  margin-bottom: 20px;
  }
  .m-40 {
  margin-bottom: 40px;
  }
  .m-60 {
    margin-bottom: 60px;
    }

/*________________Audio_____________________________*/
  .audio {
    position: fixed;
    z-index:99999;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    opacity: 0;
    }
    .aparecer-audio {
    position: fixed;
    z-index:99999;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    opacity: 1;
    }
    .desaparecer-audio {
    visibility: hidden;
    opacity: 0;
    transition: all 3s;
    position: fixed;
    right: 20px;
    bottom: 20px;
    }
    .pausa01 {
    opacity: 0;
    position: fixed;
    z-index:99999;
    right: 20px;
    bottom: 20px;
    }
    .aparecer-pausa {
    position: fixed;
    z-index:99999;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    opacity: 1;
    }

   .sombra-texto { 
   text-shadow: #000 0.1em 0.1em 0.2em;
  }
  .text-black {
  color:#000 !important;
  }
  .opciones {
  color:#fff;
  display: inline;
  margin:0 20px;
  }
  option {
    color: #000 !important;
  }
  /*----------------------------------
      Secciones
  ------------------------------------*/

  .cuadro-body {
    padding: 40px 10px;
    overflow:hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #7e93a8;
    border-radius: 200px 200px 0 0;
    }

  .cuadro-body2 {
    padding: 0px 10px 40px 10px;
    overflow:hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color:#8b94a3;
    }

  .cuadro-body3 {
    padding: 40px 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #7e93a8;
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
    height: fit-content;
    }

    
.cuadro-body4 {
  position: absolute;
  padding: 40px 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #7e93a8;
  border-top-right-radius: 9999px;
  border-top-left-radius: 9999px;
  z-index: 1;
  bottom: 0;
  align-items: center;
  margin: 0 auto;
  height: 380px;
  width: 100%;
}

.background-container2 {
  position: absolute;
  bottom: 0; /* Coloca el fondo en la parte inferior */
  left: 0;
  width: 100%;
  height: 100%; /* Ocupa toda la altura de cuadro-body4 */
  z-index: -1; /* Coloca el fondo detrás del contenido */
}

.background2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover; /* Asegura que la imagen cubra todo el área */
  background-position: center;
  transform: translateY(0); /* Inicializa el fondo sin desplazamiento */
}


.cuadro-footer {
background-color: #8c98a8;
padding: 20px;
overflow:hidden;
}


.btn-invitacion{
  font-size: 16px;
  font-weight: 500;
  width: 250px;
  padding: 15px;
  height: 40px;
  border-radius:10px;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: all!important;
  transition-property: all!important;
  background-color: #a2b1c6;;
  color: #000!important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-invitacion:hover{
background: #8c98a8;
}


.linea {
  background-color: #fff!important;
  width: 50%;
  height: 1px;
  }

  .linea1 {
    background-color: #000;
    width: 3px;
    height: 80px;
    margin: 20px 0;
    }

  .linea2 {
    background-color: #000;
    width: 30%;
    height: 3px;
    margin: 20px 0;
    }
    .cintillo-blanco{
      padding: 10px;
    background:  #fff;
    }

.cintillo-cafe{
  padding: 10px 20px;
background-color: #8c98a8;
}



.bg-circulo{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100px;
  background-color: #7e93a8;
  border-radius: 50%;
  position: relative;
  border: 3px solid #393f4d;
}


/*______________________Itinerario____________________________*/
.itinerario{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100px;
  background:  #f3eadc;
  border-radius: 50%;
  position: relative;
}



.timeline {
  position: relative;
}

.event {
  position: relative;
  margin-bottom: 50px;
}

/* Estado normal */
.icon-container {
  height: 100px;
  width: 100px;
  background:  #f3eadc;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

/* Borde interior normal */
.icon-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px; /* Ancho del borde interior */
  height: 90px; /* Altura del borde interior */
  background-color: transparent;
  border: 5px solid #8c98a8; /* Borde interior */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: border-color 0.3s ease;
}

/* Estado activo */
.event.active .icon-container {
  background-color: white; /* Cambia el color de fondo a blanco */
}

.event.active .icon-container::before {
  border-color: #fff; /* Cambia el color del borde interior a negro */
}



.event.active .line {
  background-color: #fff; /* Cambia el color de la línea a negro */
}



.icon-container .line {
  width: 2px;
  height: 30px;
  background-color: #f3eadc;
  position: absolute;
  bottom: -40px; /* Adjust this value based on the height of your icon */
}

.time {
  font-size: 1rem;
}


/*_______________Ubicaciones_____________*/
.img-border-radius{
  width: 80%;
  height: 300px;
  background-position: center;
  display: block;
  background-size: cover;
  border-radius: 200px 200px 0 0;
  position: relative;
}
.absolute-btn{
  position: absolute;
  bottom: 20px;
  width: 100%;
}

/*hospedaje*/
/*_______________carousel_____________*/
.owl-carousel .owl-item img{
  border-radius: 80px 80px 0 0!important;
  width: 80%;
  display: block;
}
.owl-theme .owl-nav{
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.cuadro-hospedaje{
  background: #fff;
  padding: 20px 0px;
  border-radius: 80px 80px 0 0;
}



/*_________________Vestimenta_________________________*/
.paleta-color-vestimenta{
  display: flex;
  justify-content: center;
}
.color{
  height: 35px;
  width: 35px;
  border-radius: 50%;
}


/*_____________________PINTEREST_______________________________*/
span.PIN_1721762770633_embed_pin .PIN_1721762770633_footer{
  display: none!important;
}



/*__________________GALERIA_____________________*/
img.galery-img{
	border-top: 10px solid #fafafa; /* Borde superior */
	border-right: 10px solid #fafafa; /* Borde derecho */
	border-bottom: 40px solid #fafafa; /* Borde inferior */
	border-left: 10px solid #fafafa; /* Borde izquierdo */
}
/*_________BANCO_________________*/
.btn-banco {
  width: 40%;
  height: 40px;
  perspective: 1000px;
  text-decoration: none;
}

.btn-banco div {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #8c98a8;
  color: #f3eadc;
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  transition: transform 0.6s;
  position: absolute;
  top: 0;
  left: 0;
}

.btn-front {
  transform: rotateY(0deg);
}

.btn-back {
  transform: rotateY(180deg);
}

.btn-banco:hover .btn-front {
  transform: rotateY(-180deg);
}

.btn-banco:hover .btn-back {
  transform: rotateY(0deg);
}


/*_____________________PARALLAX IMG________________________________*/


.scroller-outer {
  position: relative;
  width: 100%;
  height: 200vh;
}

.background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.background {
  position: absolute;
  top: 300px;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: translateY(-250px); /* Ajusta el valor según sea necesario */
}





/*_______________________musica__________________________*/

.cuadro-musica{
  border: 5px solid #8c98a8;
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.cancion{
  background: #8c98a8;
  border-radius: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}
input.input-familia{
  text-align: center;
  background: transparent;
  border-radius: 2px;
  color: #8c98a8;
font-size: 18px;
}
input.input-familia::placeholder{
color: #8c98a8;
font-size: 20px;
text-align: center;
}


input.input-cancion{
  text-align: center;
  background: transparent;
  color: #fff;
  font-size: 18px;
}

.input-cancion::placeholder {
  text-align: center;
  color: #fff;
  opacity: 1;
  font-size: 18px;
}

/*______________________contacto___________________________*/

.contacto{
  background: #7e93a8;
  border-radius: 50%;
  height: 150px;
  width: 150px;
}


.contacto{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  width: 150px;
  background-color: #a2b1c6;;
  border-radius: 50%;
  position: relative;
}

.contacto::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px; /* Ancho del borde interior */
  height: 140px; /* Altura del borde interior */
  background-color: transparent;
  border: 5px solid #7e93a8; /* Borde interior */
  border-radius: 50%;
  transform: translate(-50%, -50%);
}



  

  /*----------------------------------
      Timer
  ------------------------------------*/
  
  ul.tiempo {
    margin: 0;
    padding: 0;
    text-align: center;
    
  }
  .tiempo li {
    font-family: "Titles";
    display: inline-block;
    list-style-type: none;
    margin: 0;
    color: #000;
    padding: 5px 15px;
    font-size: 1.5rem;
    background-color: #7e93a8;
    border-radius: 5px;
    margin-right: 10px;
    
  }
  
  .tiempo li span {
    display: block;
    
  }
  
  /*----------------------------------
    Selección
  ------------------------------------*/
  ::selection {
    color: #fff;
    background: #000;
    text-shadow: none;
  }
  
  ::-webkit-selection {
    color: #fff;
    background: #000;
    text-shadow: none;
  }
  
  :active,
  :focus {
    outline: none;
  }
  
  
 /*_________________BOLETOS__________________*/
  ul.boletos {
    margin: 0;
    padding: 0;
    text-align: center;
    
  }
  .boletos li {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    color: #000;
    padding: 0 10px;
    font-size: 18px;
    
  }
  
  .boletos li span {
    display: block;
    
  }
  .circulo-boletos {
    list-style-type: none;
    margin: 0;
    border:2px solid #000; 
    border-radius: 50%;
    width: 15px;
    height: 15px;
  }
  .circulo-boletos.active {
    background-color:#A6A6A6;
    border:2px solid #A6A6A6; 
  }

/*----------------------------------
  
    Sobre
  
  ------------------------------------*/
  
  
  
  #carta {
  
    width: 100vw;
    
    height: 100vh;
    
    background-color: #7e93a8;
    
    z-index:9999;
    
    position: absolute;
    
    display: flex;
    
    justify-content: center;
    
    align-content: center;
    
    flex-direction: column;
    
    
    
    }
    

    
    
    .con-scroll {
    
    overflow-y: scroll;
    
    }
    
    .arriba{
    
    -moz-transform: translate(0px, -1500px);
    
    -webkit-transform: translate(0px, -1500px);
    
    -o-transform: translate(0px, -1500px);
    
    -ms-transform: translate(0px, -1500px);
    
    transform: translate(0px, -1500px);
    
    transition: all 3s;
    
    }
    
    
    
    .abajo {
    
    -moz-transform: translate(0px, 1000px);
    
    -webkit-transform: translate(0px, 1000px);
    
    -o-transform: translate(0px, 1000px);
    
    -ms-transform: translate(0px, 1000px);
    
    transform: translate(0px, 1000px);
    
    transition: all 3s;
    
    }
    
    
    
    .desaparecer {
    
    visibility: hidden;
    
    opacity: 0;
    
    transition: all 3s;
    
    }
    
    
    
    
    
    @media (max-width: 991px) {
    
    .titulo-sobre {
    
    font-family: Titles;
    
    margin: 0;
    
    color: #fff;
    
    position: absolute;
    
    z-index:11;
    
    right: 0;
    
    left: 0;
    
    margin: 0 auto;
    
    top: 20px;
    
    font-size: 28px;
    
    }
    
    .titulo-sobre-02 {
    
    font-family: Titles;
    
    margin: 0;
    
    color: #fff;
    
    position: absolute;
    
    z-index:11;
    
    right: 0;
    
    left: 0;
    
    margin: 0 auto;
    
    top: 20px;
    
    font-size: 24px;
    width:80%;
    }
    
    .sello {
    
    
    position: absolute;
    
    z-index:12;
    
    right: 0;
    
    left: 0;
    
    margin: 0 auto;
    
    top: 44%;
    
    
    width: 120px;
    
    display: flex;
    
    justify-content: center;
    
    align-content: center;
    
    flex-direction: column;

    animation: zoom 1s infinite alternate ease-in-out;
    
    }
    

    .sobre-1,
    .sobre-2{
      --tw-drop-shadow: drop-shadow(0 25px 25px rgb(0 0 0 / .15));

      width: 100%;
      height: 90vh;
    }
    
      }
    
    @media (min-width: 992px) {
    
    
      .titulo-sobre {
    
        font-family: Titles;
        
        margin: 0;
        
        color: #fff;
        
        position: absolute;
        
        z-index:11;
        
        right: 0;
        
        left: 0;
        
        margin: 0 auto;
        
        top: 20px;
        
        font-size: 32px;
        
        }
        
        .titulo-sobre-02 {
        
        font-family: Titles;
        
        margin: 0;
        
        color: #fff;
        
        position: absolute;
        
        z-index:11;
        
        right: 0;
        
        left: 0;
        
        margin: 0 auto;
        
        top: 20px;
        
        font-size: 24px;
        width:80%;
        }
    
        
    .sello {
    
    position: absolute;
    
    z-index:12;
    
    right: 0;
    
    left: 0;
    
    margin: 0 auto;
    
    top: 43%;
    
    
    width: 120px;
    
  
    display: flex;
    
    justify-content: center;
    
    align-content: center;
    
    flex-direction: column;
    animation: zoom 1s infinite alternate ease-in-out;
    }
    
    .sobre-1,
    .sobre-2{
      width: 130%;
      height: 100vh;
      --tw-drop-shadow: drop-shadow(0 25px 25px rgb(0 0 0 / .15));

    }
    
    }


    .sobre-container{
      position: relative;
    }






@keyframes zoom {
  from {
    transform: scale(1); /* Escala inicial */
  }
  to {
    transform: scale(1.2); /* Escala final */
  }
}



.texto-sello{
  position: absolute;
  top: 243px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 99;
}

/*----------------------------------
  Form
------------------------------------*/
form{
  width: 80%;
}
.form-campo {
  background: rgba(0,0,0,0.1);
  width: 100%;
  border: 1px solid transparent;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  color:#000;
  border-radius: 20px;
  }
  
  .form-campo::-webkit-input-placeholder {
    color: #000;
  }
  
  .form-campo::-moz-placeholder {
    color: #000;
  }
  
  .form-campo:-ms-input-placeholder {
    color: #000;
  }
  
  .form-campo::placeholder {
    color: #000;
  }
  
  .form-campo:focus {
    font-weight: 400;
    color: #000;
  }
  
  .form-campo:focus::-webkit-input-placeholder {
    color: #000;
  }
  
  .form-campo:focus::-moz-placeholder {
    color: #000;
  }
  
  .form-campo:focus:-ms-input-placeholder {
    color: #000;
  }
  
  .form-campo:focus::placeholder {
    color: #000;
  }
  
  .btn-form {
  background: rgba(0,0,0,0.1);
  padding: 10px 60px 7px 60px;
  border: 1px solid transparent;
  color:#000!important;
  transition-duration: .2s;
  border-radius:20px;
  }
  .btn-form:hover {
  background: #000;
  border: 1px solid rgba(255,255,255,0.5);
  color:#000!important;
  transition-duration: .2s;
  }


  /*___________________Pases_________________*/


/* Contenedor con efecto de desenfoque */
.invitacion {
  width: 90%;
  max-width: 350px;
  padding: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1); /* Fondo semitransparente */
  backdrop-filter: blur(10px); /* Efecto de desenfoque */
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/**/
.timeline {
  position: relative;
  margin: auto;
  padding: 50px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: #000;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.event {
  position: relative;
  width: 60%;
  padding: 20px;
}
.left{
    position: relative;
left: -45px;
}
.right{
  position: relative;
right: -20px;
}
.event:nth-child(odd) {
  text-align: right;
  left: 0;
}

.event:nth-child(even) {
  text-align: left;
  left: 50%;
}



.icon {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.icon-left {
 
  left: 85%;

}

.icon-right {
 
  right: 74%;

}

.foto-principal {
  position: relative;
  height: 100vh;
  background-image: url('../img/portada.jpg');
  background-size: cover;
  background-position: center;
}


