@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap'); /*fuente cursiva: Great Vibes*/

/*
.great-vibes-regular {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
}
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Great+Vibes&display=swap'); /*Fuente serif para textos: Cormorant Garamond*/

/*
// <weight>: Use a value from 300 to 700
// <uniquifier>: Use a unique and descriptive class name

.cormorant-garamond-<uniquifier> {
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cormorant Garamond", serif;
    text-align: center;
}

body{
    position: relative;
    background: #fdfcf7;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('../img/textura-papel.jpg'); 
    background-size: cover;
    background-repeat: repeat;
    opacity: 0.5;
    pointer-events: none; 
    z-index: -1; 
}

html {
    scroll-behavior: smooth;
}

/*Paleta de colores*/
:root{
    --COLOR_CREMA_CLARO: #F8F7F3;
    --COLOR_MARFIL: #F5EDE1;
    --COLOR_GRIS_PERLA: #DADADA;
    --COLOR_GRIS_CLARO: #C0C0C0;
    --COLOR_GRIS_OSCURO: #7C7D80;
    --COLOR_ARENA: #D6C7B0;
    --COLOR_VERDE: #A3B5A6;
}

h2{
    font-size: 30px;
    color: var(--COLOR_GRIS_OSCURO);
    text-transform: uppercase;
    margin-top: 1em;
}

p{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #626365;
    font-size: 18px;
}

.btn{
    text-decoration: none;
    color: var(--COLOR_CREMA_CLARO);
    background-color: var(--COLOR_GRIS_OSCURO);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 23px;
    font-weight: 600;
    transition: all .8s ease;
    cursor: pointer !important;
    border: none;
}

.btn:hover{
    background-color: var(--COLOR_CREMA_CLARO);
    color: var(--COLOR_GRIS_OSCURO);
}

.sombra{
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.icono-ubicacion{
    background: url('../img/icono-ubicacion.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
}

.icono-calendario{
    background: url('../img/icono-calendario.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

/* - VIDEO PRESENTACIÓN - */

.contenedor-video{
    position: relative;
    width: 100%;
    height: 100vh;
}

.video-presentacion{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    margin-bottom: 1em;
    background-position: center;
    /* filter: grayscale(100%); Hago el video en BYN*/
}

.contenedor-video::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to top, rgba(0,0,0,0.6) 20%, rgba(0,0,0,0) 80%); */
    pointer-events: none; /* para que no bloquee clics en el video */
}

.contenedor-video .texto-video{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.video-ubicacion{
    width: 400px;
    height: 300px;
    object-fit: cover;
}

.texto-video h5{
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 0.2em;
}

/* .texto-video h3{
    font-size: 60px;
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
} */

.texto-video .titulo-video{
    background: url('../img/nuestro_casamiento.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 400px;
    height: 200px;
}

.contenedor-video .flecha-abajo{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3em;
    color: var(--COLOR_CREMA_CLARO);
    text-decoration: none;
    animation: saltar 1.5s infinite;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 2;
}

/*animación de la flecha*/
@keyframes saltar {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* - CUENTA REGRESIVA - */

.fecha{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    font-size: 24px;
    margin-top: 2em;
}

.fecha .fecha-dia{
    background: url('../img/fecha-dia.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 70px;
    height: 60px;
    padding: 0 20px;
}

.cuenta-regresiva{
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
}

.cuenta-regresiva .grupo{
    line-height: 1;
}

.cuenta-regresiva .grupo .grande{
    font-size: 4rem;
    font-weight: 600;
    font-family: "Cormorant Garamond", serif;
    color: var(--COLOR_GRIS_OSCURO);
}

/* --INFORMACIÓN DEL EVENTO -- */

.contenedor-info-evento{
    position: relative;
    padding: 20px;
    max-width: 500px;
    margin: 6em auto;
    background: var(--COLOR_CREMA_CLARO);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.flor{
    position: absolute;
    background: url('../img/flores_blancas4.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 300px;
    height: 180px;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
}

.info-evento{
    margin-top: 4em;
    margin-bottom: 3em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.info-evento h3{
    text-transform: uppercase;
    font-size: 30px;
    color: var(--COLOR_GRIS_OSCURO);
    margin-bottom: .5em;
}

.info-evento .texto-informacion-evento{
    background: url('../img/informacion-evento.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 400px;
    height: 100px;
}

.info-evento p{
    font-size: 20px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 20px;
}

.info-evento strong{
    font-size: 24px;
    margin-top: 1em;
}


.info-evento .botones{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.info-evento a{
    text-decoration: none;
    color: var(--COLOR_CREMA_CLARO);
    background-color: var(--COLOR_GRIS_OSCURO);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 1em;
    transition: all .8s ease;

    display: flex;
    justify-content: center;
    align-items: center;
}

.info-evento a:hover{
    background-color: var(--COLOR_CREMA_CLARO);
    color: var(--COLOR_GRIS_OSCURO);
}

/* -- FOTO INDIVIDUAL -- */

.foto-individual{
    position: relative;
    width: 100%;
    margin-bottom: 5em;
    display: flex;
    justify-content: center;
}

.foto-individual .foto{
    background: url('../img/individual1.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 500px;
    height: 600px;
    filter: grayscale(100%);
}

.foto-individual .texto-individual-sup{
    position: absolute;
    top: 10%;
    left: 58%;
    z-index: 2;
    background: url('../img/nuestro-casamiento.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 270px;
    height: 130px;
}

/* --- FRASE 1 --- */

.frase1{
    height: 400px;
    margin-bottom: 4em;
    width: 40%;
    margin: 0 auto;
}

.frase1 .linea-deco-sup{
    margin: 0 auto;
    margin-bottom: 20px;
    width: 250px;
    height: 50px;
    background: url('../img/linea_deco.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.frase1 .linea-deco-inf{
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 250px;
    height: 50px;
    background: url('../img/linea_deco.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(180deg);
}


/* -- DRESSCODE -- */

.seccion-dresscode{
    margin-bottom: 6em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.seccion-dresscode p{
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    color: var(--COLOR_GRIS_OSCURO);
}

.gif-dresscode{
    width: 350px;
    height: 350px;
}

.seccion-dresscode .titulo-dresscode{
    background: url('../img/dresscode.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 300px;
    height: 90px;
}

.contenedor-titulo-dresscode{
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.contenedor-titulo-dresscode .linea-curva{
    background: url('../img/linea-curva.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 150px;
    height: 20px;
}

.contenedor-titulo-dresscode .linea-curva-der{
    background: url('../img/linea-curva.png');
    transform: rotate(180deg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 150px;
    height: 20px;
}

.seccion-dresscode h4{
    font-family: "Cormorant Garamond", serif;
    text-transform: uppercase;
    font-size: 20px;
    color: var(--COLOR_GRIS_OSCURO);
}

/* -- REGALO -- */

.seccion-regalo{
    width: 100%;
    height: 550px;
    /* background: url('../img/fondo-regalo.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(100%); */
    align-content: center;
}

.regalo{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 500px;
    margin: 0 auto;
    cursor: pointer;
    background: var(--COLOR_CREMA_CLARO);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 20px;
    max-width: 500px;
}

.regalo p{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 400px;
    margin-bottom: 6em;
    margin-top: 1em;
    font-size: 18px;
}

.regalo .titulo-regalo{
    background: url('../img/regalos.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 90px;
    width: 300px;
}

.regalo .regalo-superior{
    width: 300px;
    height: 95px;
    background: url('../img/regalo-superior.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    position: absolute;
    margin-bottom: -140px;
    transition: all .3s ease;
}

.regalo .regalo-inferior{
    width: 210px;
    height: 118px;
    background: url('../img/regalo-inferior.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.regalo .clic-regalo{
    background: url('../img/clic-regalo.png');
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    left: 68%;
    top: 50%;
    animation: sacudirSuave 3s infinite ease-in-out;
}

.flores-chicas-sup{
    position: absolute;
    z-index: -1;
    background: url('../img/flores_blancas3.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 400px;
    height: 300px;
    top: -120px;
    right: 20%;
    transform: translateX(-50%);
    opacity: 99;
}

.flores-chicas-inf{
    position: absolute;
    z-index: -1;
    background: url('../img/flores_blancas3.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 400px;
    height: 300px;
    top: 280px;
    left: 45%;
    transform: translateX(-50%) rotate(187deg);
    opacity: 99;
}

.abierta {
    transform: translateY(-50px) rotate(20deg); 
    transform-origin: center bottom;
}

/* MODAL */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.contenido-modal {
    position: relative;
    background-color: #fff;
    padding: 30px;
    padding-top: 2em;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 80%;
    height: 550px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contenido-modal .titulo-datos-bancarios{
    background: url('../img/datos-bancarios.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 350px;
    height: 100px;
    margin-top: 2em;
}

.contenido-modal ul{
    list-style: none;
    margin-top: 2em;
    margin-bottom: 1em;
}

.contenido-modal ul li{
    text-decoration: none;
    font-size: 17px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--COLOR_GRIS_OSCURO);
    margin-bottom: 1em;
}

.contenido-modal ul li strong{
    font-size: 20px;
    text-transform: uppercase;
}


/* -- UBICACIÓN -- */

.seccion-ubicacion{
    height: 650px;
    width: 100%;
    background: var(--COLOR_CREMA_CLARO);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: 6em;
    align-content: center;
    position: relative;
}

.seccion-ubicacion .titulo-ubicacion{
    background: url('../img/la-araucaria.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 300px;
    height: 100px;
    margin: 0 auto;
}

.seccion-ubicacion p{
    font-size: 18px;
}

.seccion-ubicacion video{
    height: 350px;
    /* filter: grayscale(100%); 
    -webkit-filter: grayscale(100%); */
    transform: rotate(90deg);
    object-fit: cover;
}

.seccion-ubicacion{
        height: auto;
        margin-top: 2em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contenedor-ubicacion{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 3em;
        margin-top: 2em;
        width: 95%;
        align-items: center;
    }

.contenedor-mapa{
    position: relative;
    width: 500px;  
    height: 400px; 
}

.contenedor-mapa iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(100%); 
    -webkit-filter: grayscale(100%);
}

.contenedor-mapa .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; 
}

.contenedor-mapa:hover .overlay {
    opacity: 1;
    pointer-events: all;
}

.flores-fondo-ubicacion{
    position: absolute;
    z-index: -1;
    background: url('../img/flores_blancas1.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 400px;
    height: 300px;
    top: 540px;
    left: -3%;
    transform: translateX(-50%), rotate(-180deg);
    opacity: 99;
}

/* -- GALERÍA DE FOTOS -- */

.carrusel-celular {
    display: none;
    width: 80%;
    max-width: 90vw;
    height: 300px;
    margin: 0 auto;
    margin-top: 2em;
    margin-bottom: 3em;
}

.grid-imagenes .img1 img{
    object-position: 50% 20%;
}

.grid-imagenes .img4 img{
    object-position: top;
}
.carrusel-celular .img4{
    object-position: top;
}

.carrusel-celular .swiper-slide {
  flex-shrink: 0;     
  width: 100%;          
  height: 100%;
}


.carrusel-celular .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Paginación personalizada: líneas blancas */
.carrusel-celular .swiper-pagination {
    bottom: 10px;
}

.carrusel-celular .swiper-pagination-bullet {
    width: 15px;          /* largo de la línea */
    height: 2px;          /* grosor */
    background: white;     /* color blanco */
    border-radius: 2px;    /* esquinas redondeadas */
    opacity: 0.5;          /* opacidad de inactivo */
    margin: 0 5px !important; /* espacio entre "líneas" */
}

.carrusel-celular .swiper-pagination-bullet-active {
    opacity: 1;            /* activo más visible */
}

.seccion-galeria .carrusel-celular{
    display: none;
}

.seccion-galeria{
    margin-top: 7em;
}

.grid-imagenes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    grid-template-areas:
        "img1 img1 img2 img3"
        "img4 img5 img2 img6";
    width: 80%;
    margin: 0 auto;
    padding-bottom: 4em;
    margin-top: 3em;
}

.img1 { grid-area: img1; }
.img2 { grid-area: img2; }
.img3 { grid-area: img3; }
.img4 { grid-area: img4; }
.img5 { grid-area: img5; }
.img6 { grid-area: img6; }

.grid-imagenes div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.grid-imagenes div{
    transition: all .5s ease-in-out;
}

/* Efecto hover opcional */
.imagen-hover:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.seccion-galeria h2{
    font-size: 26px;
}

/* ---- SUGERENCIAS DE ALOJAMIENTO ------ */

.seccion-alojamiento{
    width: 100%;
    height: 350;
    align-content: center;
    background-color: var(--COLOR_CREMA_CLARO);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.contenido-modal {
    position: relative;
    background-color: #fff;
    padding: 30px;
    padding-top: 2em;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 80%;
    height: 550px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#modalAlojamiento .contenido-modal{
    height: 550px;
}

#modalAlojamiento .contenido-modal p{
    margin-top: 2em !important;
}

.seccion-alojamiento h2{
    font-size: 16px;
}

.seccion-alojamiento div{
    background: url('../img/alojamiento.png');
    background-repeat: no-repeat;
    background-size: contain;
    height: 100px;
    width: 300px;
    margin: 0 auto;
}

.seccion-alojamiento button{
    margin-top: 2em;
}

#modalAlojamiento .titulo-alojamiento{
    background: url('../img/alojamiento.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 100px;
    width: 300px;
    margin: 0 auto;
}

#modalAlojamiento ul{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#modalAlojamiento ul li{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    width: 85%;
}

#modalAlojamiento ul li h4{
    font-size: 20px;
}

#modalAlojamiento ul li a{
    text-decoration: none;
    color: #626365;
    background-color: var(--COLOR_GRIS_PERLA);
    padding: 5px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all .8s ease;
}

#modalAlojamiento ul li a:hover{
    color: var(--COLOR_CREMA_CLARO);
    background: var(--COLOR_GRIS_OSCURO);
}

/* ------- PLAYLIST ------- */

.playlist {
    text-align: center;
    padding: 5em 2em 3em 2em;
    background: var(--COLOR_CREMA_CLARO);
    border-radius: 12px;
    margin: auto;
    margin-top: 4em;
    position: relative;
    overflow: hidden;
}

.flor-izquierda{
    position: absolute;
    background: url('../img/flores_blancas3.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 370px;
    height: 250px;
    top: -90px;
    left: 2%;
    transform: translateX(-50%) rotate(20deg);
}

.flor-derecha{
    position: absolute;
    background: url('../img/flores_blancas5.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 350px;
    height: 250px;
    top: 75%;
    left: 92%;
    transform: translateX(-50%) rotate(-10deg);
    opacity: .8;
}

.playlist .titulo-playlist{
    background: url('../img/nuestra-playlist.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 320px;
    height: 90px;
    margin: 0 auto;
}

.playlist iframe{
    width: 400px;
    margin-top: 2em;
}

.playlist h3 {
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 0.5em;
    margin-top: 1em;
    font-size: 24px;
}

.playlist p {
    color: var(--COLOR_GRIS_OSCURO);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 1em;
}


/* --- INSTAGRAM --- */

.seccion-instagram{
    width: 100%;
    height: auto;
    align-content: center;
    margin-top: 3em;
    margin-bottom: 4em;
}

.contenedor-instagram{
    width: 500px;
    height: auto;

    padding: 20px;
    margin: 0 auto;
    padding-bottom: 3em;
}

.contenedor-instagram .titulo-instagram{
    background: url('../img/etiquetanos.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 320px;
    height: 90px;
    margin: 0 auto;
    margin-bottom: 1.5em;
}

.contenedor-instagram .icono-instagram{
    background: url('../img/icono-camara.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.contenedor-instagram span{
    background: var(--COLOR_GRIS_PERLA);
    color: var(--COLOR_GRIS_OSCURO);
    padding: 10px;
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
}

.contenedor-instagram p{
    margin: 1em 0 2em 0;
}

.contenedor-instagram .foto-instagram{
    background: url('../img/etiquetanos_presentacion.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 450px;
    height: 450px;
    margin: 0 auto;
    margin-bottom: 3em;
}

.contenedor-instagram a{
    margin-bottom: 2em;
}

/* FRASE 2 */

.frase2{
    margin: 0 auto;
    margin-top: 2em;
    width: 85%;
    height: 200px;
}

/* ---- CONFIRMAR ------ */

.confirmar-asistencia{
    height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10em;
}

.titulo-asistencia{
    background: url('../img/titulo-asistencia.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 320px;
    height: 90px;
    margin: 0 auto;
    margin-bottom: 1.5em;
}

.confirmar-asistencia .contenedor-asistencia{
    width: 500px;
    height: auto;
    background: var(--COLOR_CREMA_CLARO);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4em;
    position: relative;
}

.contenedor-asistencia .flores-chicas-inf{
    top: 180px;
}

.contenedor-asistencia p{
    margin-top: 1em;
}

.confirmar-asistencia .icono-invitacion {
    background: url('/img/icono-invitacion.png') center/contain no-repeat;
    width: 80px;
    height: 80px;
    animation: sacudirSuave 3s infinite ease-in-out;
    margin: 0 auto;
}

/* Animación para sacudir suavemente la invitación */
@keyframes sacudirSuave {
    /* Pausa inicial */
    0%   { transform: rotate(0deg); }
    
    /* 1° sacudida */
    5%   { transform: rotate(-5deg); }
    10%  { transform: rotate(5deg); }
    15%  { transform: rotate(0deg); }

    /* 2° sacudida */
    20%  { transform: rotate(-5deg); }
    25%  { transform: rotate(5deg); }
    30%  { transform: rotate(0deg); }

    /* 3° sacudida */
    35%  { transform: rotate(-5deg); }
    40%  { transform: rotate(5deg); }
    45%  { transform: rotate(0deg); }

    /* Pausa hasta volver a empezar */
    100% { transform: rotate(0deg); }
}

.confirmar-asistencia a{
    text-decoration: none;
    color: var(--COLOR_CREMA_CLARO);
    background-color: var(--COLOR_GRIS_OSCURO);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 23px;
    font-weight: 600;
    margin-top: 1em;
    transition: all .8s ease;
}

.confirmar-asistencia a:hover{
    background-color: var(--COLOR_CREMA_CLARO);
    color: var(--COLOR_GRIS_OSCURO);
}

/* -- FOOTER -- */
footer{
    background: var(--COLOR_CREMA_CLARO);
    padding: 2em;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2em;
    align-items: center;
}

footer .gabydani{
    background: url('../img/gaby-y-dani-gris.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 300px;
    height: 100px;
}

footer ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer ul li a{
    text-decoration: none;
    color: var(--COLOR_GRIS_OSCURO);
    font-size: 23px;
    transition: all .5s ease;
}

footer ul li a:hover{
    color: var(--COLOR_VERDE);
}

/* -- BOTÓN WHATSAPP -- */

.whatsapp-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: all 0.4s ease;
}

.whatsapp-container.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}


.btn-wsp {
  background: var(--COLOR_VERDE);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  opacity: .7;
}

.btn-wsp:hover {
  transform: scale(1.1);
}

.opciones-wsp {
  position: absolute;
  bottom: 0;
  right: 0;
}

.opciones-wsp a {
  position: absolute;
  background: var(--COLOR_VERDE);
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 16px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.opciones-wsp.active .btn-gabi {
  transform: translateY(-90px) translateX(-150px);
  opacity: 1;
  pointer-events: auto;
}

.opciones-wsp.active .btn-dani {
  transform: translateX(-150px) translateY(-40px);
  opacity: 1;
  pointer-events: auto;
}


/* --- MÚSICA --- */

.btn-musica {
  position: fixed;
  top: 15px;
  right: 20px;
  background: var(--COLOR_CREMA_CLARO);
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  z-index: 1000;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.btn-musica.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}


.btn-musica:hover {
    background: var(--COLOR_GRIS_PERLA);
}

.icono-musica {
    margin: 0 auto;
    width: 30px;
    height: 30px;
    background: url("../img/icono-musica.png") center/contain no-repeat; 
    position: relative;
}

/* Línea diagonal al pausar */
.icono-musica.pausado::after {
    content: "";
    position: absolute;
    top: 40%;
    left: 30%;
    width: 40px;
    height: 100%;
    border-top: 3px solid var(--COLOR_VERDE);
    transform: rotate(-45deg);
    transform-origin: center;
}

/* ---- CARTEL INICIAL ------ */

.modal-inicial {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.contenido-modal-inicial {
    position: relative;
    background-color: #fff;
    padding: 2em 2em 2em;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 80%;
    min-height: 300px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible; 
}

/* Flor decorativa */
.modal-inicial .flor {
    position: absolute;
    top: -28%; 
    left: 50%;
    transform: translateX(-50%);
    width: clamp(230px, 25vw, 300px);
    aspect-ratio: 300 / 180;
    background: url('../img/flores_blancas4.png') no-repeat center / contain;
    z-index: 10000; /* ✅ sobre todo */
    pointer-events: none;
}

.contenido-modal-inicial h2 {
    margin-top: 2em;
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    color: #333;
}

/* Botones */
.contenido-modal-inicial .botones {
    display: flex;
    gap: 1em;
    margin-top: 1.5em;
}



#cartel-inicial .botones .btn{
    text-transform: uppercase;
    font-size: 18px;
}

.btn-ingreso-musica {
    background: var(--COLOR_VERDE);
    color: white;
    margin-right: 1em;
}

.btn--ingreso-musica:hover {
    background: var(--COLOR_GRIS_PERLA);
}

.btn-ingreso-sin {
    background: var(--COLOR_GRIS_OSCURO);
    color: white;
}

.btn-ingreso-sin:hover {
    background: var(--COLOR_GRIS_PERLA);
}

#cartel-inicial .gabydani{
    background: url('../img/gaby-y-dani-gris.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 300px;
    height: 90px;
}

/* -- RESPONSIVE -- */

@media (max-width: 768px){
    

    #cartel-inicial .gabydani{
        margin-top: 50px;
    }

    .grid-imagenes { display: none; }
    .seccion-galeria .carrusel-celular { display: flex; }

    /*fecha y cuenta regresiva*/
    .cuenta-regresiva{
        gap: 1rem;
    }
    .cuenta-regresiva .grupo .grande{
        font-size: 2rem;
    }

    /*Galería de imágenes*/
    .grid-imagenes {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
    grid-template-areas:
        "img1 img2"
        "img3 img4"
        "img5 img6";
    }

    /*Video presentación*/
    .texto-video h5{
        font-size: 20px;
    }
    .texto-video .titulo-video{
        width: 350px;
        height: 90px;
    }

    /*Información del evento*/
    .contenedor-info-evento{
        width: 400px;
    }

    /*Ubicación*/
    .seccion-ubicacion{
        height: auto;
        margin-top: 2em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contenedor-ubicacion{
        width: 95%;
    }

    .seccion-ubicacion .titulo-ubicacion{
        width: 250px;
        height: 80px;
    }

    .contenedor-ubicacion{
        flex-direction: column;
        gap: 3em;
        margin-top: 2em;
    }

    .seccion-ubicacion video{
        width: 300px;
        height: 300px;
        margin-bottom: 2em;
    }

    .contenedor-mapa{
        width: 300px;  
        height: 300px; 
    }

    .flores-fondo-ubicacion{
        width: 300px;
        height: 200px;
        top: 760px;
        left: -20%;
    }
}

@media (max-width: 483px){

    /*Botón música*/
    .btn-musica {
        opacity: .8;
        top: 20px;
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    /*Información del evento*/
    .contenedor-info-evento{
        width: 300px;
        margin: 6em auto;
        margin-bottom: 4em;
    }
    .contenedor-info-evento h3{
        margin-bottom: 1em;
    }
    .info-evento .botones{
        flex-direction: column;
    }
    .info-evento{
        margin-bottom: 1em;
    }
    .linea-curva, .linea-curva-der{
        display: none;
    }

    .btn_agendar{
        margin-top: 5px !important;
        background-color: var(--COLOR_GRIS_CLARO) !important;
        color: var(--COLOR_GRIS_OSCURO) !important;
    }

    .icono-calendario{
        filter: invert(20%) brightness(50%);
  /* o directamente si el svg tiene fill editable */
        fill: #333;
    }

    /*Dresscode*/
    .seccion-dresscode{
        margin-bottom: 0;
    }

    /*Frase 1*/
    .frase1{
        width: 85%;
        margin: 0 auto;
        font-family: "Cormorant Garamond", serif;
        margin-bottom: 2em;
    }

    /*Regalo*/
    .seccion-regalo{
        position: relative;
        overflow-x: hidden; 
        height: auto;       
        min-height: 720px;
    }

    .regalo{
        height: 500px;
        max-width: 300px;
    }

    .regalo p{
        width: 95%;
        font-size: 16px;
    }

    .regalo .titulo-regalo{
        width: 200px;
    }

    .regalo .regalo-superior{
        width: 200px;
        height: 80px;
        margin-bottom: -160px;
    }

    .regalo .regalo-inferior{
        width: 130px;
        height: 100px;
    }

    .regalo .clic-regalo{
        width: 130px;
        height: 130px;
    }

    .flores-chicas-sup{
        width: 300px;
        height: 200px;
        top: -60px;
        right: 5%;
    }

    .flores-chicas-inf{
        width: 400px;
        height: 300px;
        top: 280px;
    }

    /*Modal regalo*/
    .modal {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.6);
        justify-content: center;
        align-items: center;
        z-index: 10;
    }

    .contenido-modal {
        background-color: #fff;
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        max-width: 300px;
        width: 80%;
        height: 450px;
        box-shadow: 0 0 20px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .seccion-alojamiento{
        height: 350px;
    }

    .seccion-alojamiento .contenido-modal{
        height: 700px !important;
    }

    #cartel-inicial .gabydani{
        margin-top: 20px;
        max-width: 250px;
        height: 80px;
    }

    #cartel-inicial .botones{
        flex-direction: column;
        gap: 10px;
    }

    #cartel-inicial .botones .btn-ingreso-musica{
        margin-right: 0;
    }

    .contenido-modal .titulo-datos-bancarios{
        background: url('../img/datos-bancarios.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 250px;
        height: 100px;
        margin-top: 2em;
    }

    .contenido-modal ul{
        list-style: none;
        margin-top: 2em;
        margin-bottom: 1em;
    }

    .contenido-modal ul li{
        text-decoration: none;
        font-size: 17px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--COLOR_GRIS_OSCURO);
        margin-bottom: 1em;
    }

    .contenido-modal ul li strong{
        font-size: 20px;
        text-transform: uppercase;
    }

    /*Galería de fotos*/
    .grid-imagenes {
        gap: 10px;
    }

    .seccion-galeria h2{
        margin-top: 0;
    }

    .seccion-galeria{
        margin-top: 4em;
    }

    /*Alojamiento*/
    #modalAlojamiento .titulo-alojamiento{
        height: 80px;
        width: 200px;
        margin: 0 auto;
    }

    .seccion-alojamiento{
        padding: 20px;
    }

    /*Playlist*/
    .playlist {
        text-align: center;
        padding: 5em 2em 3em 2em;
        background: var(--COLOR_CREMA_CLARO);
        border-radius: 12px;
        margin: auto;
        margin-top: 4em;
        position: relative;
        overflow: hidden;
    }

    .flor-izquierda{
        width: 270px;
        height: 250px;
        top: -90px;
        left: 2%;
        transform: translateX(-50%) rotate(20deg);
        z-index: 2;
    }

    .flor-derecha{
        transform: translateX(-50%) rotate(-40deg);
        opacity: .9;
    }

    .playlist .titulo-playlist{
        width: 300px;
    }

    .playlist iframe{
        width: 300px;
        margin-top: 2em;
    }

    /*Instagram*/
    .seccion-instagram{
        margin-bottom: 0;
    }

    .contenedor-instagram{
        max-width: 350px;
        padding-bottom: 2em;
    }

    .contenedor-instagram .titulo-instagram{
        width: 300px;
    }

    .contenedor-instagram .foto-instagram{
        width: 100%;
        height: 350px;
    }

    .contenedor-instagram a{
        margin-bottom: 2em;
    }

    /*Confirmar asistencia*/
    .confirmar-asistencia{
        height: 420px;
        margin-bottom: 2em;
        position: relative;
        overflow-x: hidden; 
        height: auto;       
        min-height: 550px;
    }

    .confirmar-asistencia .contenedor-asistencia{
        width: 300px;
        height: 400px;
        padding: 2em;
        position: relative;
    }

    .contenedor-asistencia .flores-chicas-inf{
        top: 180px;
        height: 250px;
    }

    .contenedor-asistencia .flores-chicas-sup{
        height: 250px;
    }

    .contenedor-asistencia p{
        margin-top: 1em;
    }

    .titulo-asistencia{
    width: 250px;
    }

    .frase2{
        margin: 0 auto;
        margin-top: 2em;
        width: 85%;
        height: 150px;
    }

}

