*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Montserrat',sans-serif;
min-height:100vh;
overflow-x:hidden;
}


.sobre-realista{

padding:18px;
border-radius:14px;

background:
linear-gradient(145deg,#ffffff,#f8f3ea);

box-shadow:
0 30px 70px rgba(0,0,0,0.15),
0 8px 20px rgba(0,0,0,0.08);

border:1px solid rgba(212,175,55,0.25);

position:relative;

}



.sobre-realista::before{

content:"";
position:absolute;
inset:8px;

border-radius:8px;

border:1px solid rgba(212,175,55,0.35);

pointer-events:none;

}

.sobre-container{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
z-index:1000;
transition:all .9s cubic-bezier(.4,0,.2,1);
}

.sobre-wrapper{
text-align:center;
transform:translateY(-30px);
}


.sobre-realista{
position:relative;
width:420px;
height:300px;
margin:0 auto;
cursor:pointer;
perspective:1200px;
}



.cuerpo-sobre{
position:absolute;
bottom:0;
left:0;
width:100%;
height:86%;

background:
linear-gradient(145deg,#ffffff,#fff8f0),
url("https://www.transparenttextures.com/patterns/paper-fibers.png");

border-radius:10px;

box-shadow:
0 20px 45px rgba(0,0,0,.15),
0 3px 10px rgba(0,0,0,.08),
inset 0 0 12px rgba(255,255,255,.4);

border:1px solid rgba(212,175,55,.25);

z-index:1;
transition:all .4s ease;
}



.sobre-contenido{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
width:80%;
}



.sobre-sello-real{
width:70px;
height:70px;

background:linear-gradient(135deg,#D4AF37,#B8962E);

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

margin:0 auto 14px;

box-shadow:
0 6px 18px rgba(0,0,0,.18),
inset 0 2px 6px rgba(255,255,255,.35);

border:2px solid rgba(255,255,255,.5);
}

.sobre-sello-real i{
color:white;
font-size:28px;
}



.sobre-texto-real{
text-align:center;
}

.sobre-titulo-real{
font-family:'Cormorant Garamond',serif;
font-size:1.05rem;
letter-spacing:5px;
color:#B8A07C;
display:block;
margin-bottom:6px;
text-transform:uppercase;
}

.sobre-subtitulo-real{
font-family:'Cormorant Garamond',serif;
font-size:1.9rem;
font-weight:600;
color:#6f5b46;
letter-spacing:1px;
}



.solapa{
position:absolute;
top:0;
left:0;
width:100%;
height:55%;

background:
linear-gradient(135deg,#fffdf8,#fff4e5);

clip-path:polygon(0% 0%,50% 65%,100% 0%);

z-index:2;

transform-origin:top center;

transition:transform .7s cubic-bezier(.4,0,.2,1);

box-shadow:
0 -4px 12px rgba(0,0,0,.05);

border-radius:10px 10px 0 0;

cursor:pointer;
}

.solapa-interior{
position:absolute;
bottom:0;
left:0;
width:100%;
height:32%;

background:linear-gradient(
180deg,
rgba(212,175,55,.18),
transparent
);

clip-path:polygon(0% 0%,50% 100%,100% 0%);
}



.solapa.abierta{
transform:rotateX(180deg);
z-index:0;
}



.sobre-sombra-real{
position:absolute;
bottom:-30px;
left:12%;
width:76%;
height:30px;

background:rgba(0,0,0,.18);

border-radius:50%;

filter:blur(14px);

z-index:0;
}


.scroll-indicator-real{
margin-top:70px;
color:#B8A07C;
font-size:.8rem;
letter-spacing:3px;
animation:bounce 2.2s infinite;
}

.scroll-indicator-real span{
display:block;
margin-bottom:10px;
}

.scroll-indicator-real i{
font-size:1.3rem;
display:block;
}



@keyframes bounce{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(10px);
}

}



.sobre-container.abriendo{
opacity:0;
visibility:hidden;
pointer-events:none;
}

.sobre-container.abriendo .cuerpo-sobre{
transform:scale(1.15);
opacity:0;
transition:all .45s ease;
}

.sobre-container.abriendo .scroll-indicator-real{
opacity:0;
transform:translateY(35px);
transition:all .45s ease;
}



.cuerpo-sobre::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:120%;
height:100%;

background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.6),
transparent
);

transform:skewX(-25deg);

transition:1.2s;
}

.sobre-realista:hover .cuerpo-sobre::before{
left:120%;
}



.sobre-sello-real{
position:relative;
overflow:hidden;
}

.sobre-sello-real::after{

content:"";
position:absolute;
top:-50%;
left:-50%;
width:200%;
height:200%;

background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.5),
transparent
);

animation:brilloSello 6s linear infinite;
}

@keyframes brilloSello{

0%{
transform:rotate(0deg) translateX(-100%);
}

100%{
transform:rotate(360deg) translateX(100%);
}

}



.contenido-principal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contenido-principal.visible {
    opacity: 1;
    transform: translateY(0);
}

.invitacion-wrapper {
    max-width: 650px;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: 0 35px 55px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(212, 175, 55, 0.15);
    text-align: center;
    backdrop-filter: blur(2px);
}


.decor-top, .decor-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.decor-bottom {
    margin-top: 40px;
    margin-bottom: 0;
}

.linea {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, #D4AF37, transparent);
}

.decor-top i, .decor-bottom i {
    color: #D4AF37;
    font-size: 12px;
    opacity: 0.7;
}


.nombres {
    margin-bottom: 20px;
}

.novia, .novio {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 500;
    color: #6B5744;
    letter-spacing: 2px;
}

.ampersand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #D4AF37;
    margin: 10px 0;
}

.subtitulo-boda {
    margin-bottom: 40px;
    font-size: 15px;
}

.subtitulo-boda span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #B8A07C;
    font-weight: 300;
}


.fecha-destacada {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 20px 0;
    border-top: 1px solid #F0E8DC;
    border-bottom: 1px solid #F0E8DC;
}

.dia {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 600;
    color: #D4AF37;
    line-height: 1;
}

.mes {
    text-align: left;
}

.mes span:first-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: #B8A07C;
    display: block;
    margin-bottom: 5px;
}

.mes span:last-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #6B5744;
}


.detalles-boda {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    
}

.detalle-card {
    text-align: center;
    padding: 22px;
    background: #FEFAF5;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid #F5EDE2;
}

.detalle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.04);
    border-color: #E8DCC8;
}

.detalle-icono {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #F0E8DC;
}

.detalle-icono i {
    font-size: 26px;
    color: #D4AF37;
}

.detalle-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #6B5744;
    margin-bottom: 10px;
}

.detalle-card .hora {
    font-weight: 500;
    color: #D4AF37;
    margin-bottom: 8px;
    font-size: 1.7em;
}

.detalle-card .lugar {
    font-weight: 500;
    color: #6B5744;
    margin-bottom: 5px;
}

.detalle-card .direccion {
    font-size: 1.0rem;
    color: #B8A07C;
    margin-bottom: 15px;
}

.btn-mapa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    padding: 7px 16px;
    border-radius: 30px;
    transition: all 0.2s;
    background: transparent;
}

.btn-mapa:hover {
    background: #D4AF37;
    color: white;
}


.vestimenta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FEFAF5;
    padding: 10px 28px;
    border-radius: 40px;
    margin-bottom: 30px;
    border: 1px solid #F0E8DC;
}

.vestimenta i {
    color: #D4AF37;
    font-size: 17px;
}

.vestimenta span {
    font-size: 1.0rem;
    letter-spacing: 2px;
    color: #B8A07C;
}


.frase-cita {
    background: #FEFAF5;
    padding: 25px;
    border-radius: 24px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #F5EDE2;
}

.frase-cita i {
    color: #D4AF37;
    font-size: 30px;
    opacity: 1;
    margin-top: -30px;
}

.frase-cita p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #9B8A7A;
    line-height: 1.2;
    flex: 1;
}

.btn-confirmar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #D4AF37, #C9A96E);
    color: white;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.96rem;
    transition: all 0.3s;
    margin-bottom: 25px;
    border: none;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.btn-confirmar:hover {
    background: linear-gradient(135deg, #C9A96E, #B8962E);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.3);
}


.contacto {
    text-align: center;
    font-size: 1.1rem;
    color: #B8A07C;
}

.contacto i {
    margin-right: 6px;
    color: #D4AF37;
}

.confirmar-fecha {
    margin-top: 8px;
    font-size: 1.0rem;
}

.hashtag {
    margin-top: 28px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #D4AF37;
    font-weight: 300;
}


@media (max-width: 600px) {
    .invitacion-wrapper {
        padding: 35px 25px;
    }
    
    .novia, .novio {
        font-size: 2.2rem;
    }
    
    .ampersand {
        font-size: 1.5rem;
    }
    
    .dia {
        font-size: 3.5rem;
    }
    
    .sobre-realista {
        width: 280px;
        height: 210px;
    }
    
    .sobre-titulo-real {
        font-size: 0.85rem;
    }
    
    .sobre-subtitulo-real {
        font-size: 1.3rem;
    }
    
    .sobre-sello-real {
        width: 45px;
        height: 45px;
    }
    
    .sobre-sello-real i {
        font-size: 20px;
    }
    
    .frase-cita {
        flex-direction: column;
        text-align: center;
    }
    
    .detalle-card {
        padding: 18px;
    }
    
    .linea {
        width: 35px;
    }
    
    .music-control {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}



.galeria-amor{
margin-top:70px;
text-align:center;
}

.titulo-galeria{
font-family:'Cormorant Garamond', serif;
font-size:32px;
color:#6e5c49;
margin-bottom:30px;
letter-spacing:2px;
}

.contenedor-galeria{
position:relative;
display:flex;
flex-direction:column;
align-items:center;
}

.contenedor-galeria img{
width:100%;
max-width:420px;
height:420px;
object-fit:cover;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
border:5px solid #fff;
transition:opacity .6s ease, transform .4s;
cursor:pointer;
}

.contenedor-galeria img:hover{
transform:scale(1.02);
}



.indicadores{
margin-top:15px;
display:flex;
gap:8px;
}

.dot{
width:9px;
height:9px;
background:#d6c5a5;
border-radius:50%;
transition:.3s;
}

.dot.activo{
background:#c9a96e;
transform:scale(1.3);
}



.frase-galeria{
margin-top:22px;
font-family:'Montserrat', sans-serif;
font-size:17px;
color:#8b7b67;
max-width:420px;
margin-left:auto;
margin-right:auto;
line-height:1.7;
}

.fecha-boda-texto{
font-family:'Cormorant Garamond', serif;
font-size:24px;
color:#131211;
text-align:center;
letter-spacing:2px;
margin-bottom:10px;
margin-top: 5px;
}

.faltan-texto{
font-size:15px;
letter-spacing:4px;
color:#000000;
margin-bottom:10px;
text-transform:uppercase;
}

.contador-boda{
display:flex;
justify-content:center;
gap:35px;
margin-bottom:45px;
margin-top:5px;
}

.contador-item{
text-align:center;
}

.contador-item span{
font-size:55px;
font-family:'Montserrat', sans-serif;
font-weight:500;
color:#D4AF37;
}

.contador-item p{
font-size:14px;
letter-spacing:2px;
color:#B8A07C;
margin-top:4px;
text-transform:uppercase;
}

.linea-separador{
width:400px;
height:1px;
background:#E8DCC8;
margin:25px auto;
}



.vestimenta-boda{
margin-top:30px;
margin-bottom:40px;
text-align:center;
}

.titulo-vestimenta{
font-family:'Cormorant Garamond', serif;
font-size:22px;
color:#6B5744;
letter-spacing:2px;
margin-bottom:10px;
}

.linea-vestimenta{
width:120px;
height:1px;
background:#E8DCC8;
margin:10px auto 25px auto;
}

.contenedor-vestimenta{
display:flex;
justify-content:center;
gap:80px;
}

.vestimenta-col{
text-align:center;
}

.tipo{
font-size:12px;
letter-spacing:2px;
color:#B8A07C;
margin-bottom:10px;
}

.icono-vestimenta{
font-size:55px;
color:#D4AF37;
}

@media (max-width: 480px) {
    .invitacion-wrapper {
        padding: 28px 20px;
    }
    
    .fecha-destacada {
        gap: 12px;
    }
    
    .detalle-icono {
        width: 55px;
        height: 55px;
    }
    
    .detalle-icono i {
        font-size: 22px;
    }
}