/* Variables*/
:root {
    --rosa-viejo: #B76E79;
    --rosa-chicle: #E98BA8;

    --rose-gold: #C98B8B;
    --rose-gold-claro: #E4B6B2;

    --dorado: #C9A45C;
    --dorado-claro: #E5CC91;

    --rosa-palido: #F9E8EC;
    --marfil: #FFF9F6;

    --rosa-oscuro: #713F4A;
    --texto: #4A3940;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100vh;
}

body {
    background: var(--blanco-puro);
    color: var(--texto-oscuro);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.7;

    letter-spacing: 3px;
}


/*Audio*/

header {
    position: absolute;

    top: 25px;
    left: 55%;

    transform: translateX(-50%);

    width: min(800px, 85vw);

    z-index: 10;
}


/*Reproductor*/

.reproductor {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 20px;


}


/*Botones musica*/

#botonMusica,
#botonRepetir {
    width: 28px;
    height: 28px;

    padding: 0;

    border: none;
    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    cursor: pointer;

    color: var(--dorado-claro);

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

#botonMusica:hover,
#botonRepetir:hover {
    transform: scale(1.15);
}


/*Boton - Play*/

.icono-play {
    width: 0;
    height: 0;

    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid var(--dorado-claro);

    margin-left: 3px;
}


/*Boton - Pausa*/

.icono-pause {
    display: none;

    width: 10px;
    height: 14px;

    border-left: 3px solid var(--dorado-claro);
    border-right: 3px solid var(--dorado-claro);
}


/* Cuando está reproduciendo */

#botonMusica.reproduciendo .icono-play {
    display: none;
}

#botonMusica.reproduciendo .icono-pause {
    display: block;
}


/*Barra de progreso*/

.barra-musica {
    height: 3px;

    flex: 1;

    background: rgba(90, 48, 56, 0.2);

    position: relative;

    cursor: pointer;
}


/* Parte que ya se reprodujo */

.progreso {
    position: absolute;

    top: 0;
    left: 0;

    width: 0%;
    height: 100%;

    background: var(--rose-gold);
}


/* Puntito al final del progreso */

.progreso::after {
    content: "";

    position: absolute;

    right: -4px;
    top: 50%;

    width: 8px;
    height: 8px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: var(--rosa-viejo);

    opacity: 0;
    transition: opacity 0.2s;
}

.barra-musica:hover .progreso::after {
    opacity: 1;
}


/*Repetir*/

#botonRepetir {
    font-family: Arial, sans-serif;

    font-size: 20px;

    font-weight: 400;
}


/* Repetición activada */

#botonRepetir.activo {
    color: var(--rosa-palido);

    transform: scale(1.1);
}


/*Animacion del boton cuando se reproduce*/

#botonMusica.reproduciendo {
    animation: pulsar 2s ease-in-out infinite;
}


@keyframes pulsar {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

}


/*Portada*/

main>#portada {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;


    background:
        linear-gradient(rgba(40, 25, 30, 0.38),
            rgba(40, 25, 30, 0.50)),
        url("luli5.jpeg") center / cover no-repeat;

    position: relative;
}


/*Marco*/

main>#portada:after {
    content: "";

    position: absolute;

    inset: 25px;

    border: 3px solid rgba(255, 255, 255, 0.55);
    pointer-events: none;
}

#tituloPortada {
    font-family: 'Parisienne', cursive;
    font-size: clamp(15rem, 20vw, 10rem);
    font-weight: 200;
    line-height: 1;
    text-shadow:
        2px 3px 6px rgba(113, 63, 74, 0.20);
    letter-spacing: 0px;
    animation: aparecerNombre 2.2s ease-out both;

    background: linear-gradient(180deg,
            #FFF9F6 0%,
            #F9E8EC 25%,
            #E4B6B2 50%,
            #C98B8B 72%,
            #B76E79 100%);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

#subtituloPortada {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(5rem, 6vw, 4rem);
    font-weight: 500;
    letter-spacing: 20px;
    color: var(--dorado-claro);
    text-shadow:
        2px 3px 6px rgba(113, 63, 74, 0.20);
    text-transform: uppercase;
    background: linear-gradient(180deg,
            #9A641C 0%,
            #C58A2C 20%,
            #FFF0B0 40%,
            #D4A33E 55%,
            #E5B85C 70%,
            #9A641C 100%);

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: aparecerSubtitulo 2.2s ease-out both;
}

/*Animaciones*/

@keyframes aparecerNombre {

    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.94);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


@keyframes aparecerSubtitulo {

    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================
   SECCIONES GENERALES
   ========================= */

main>div:not(:first-child) {
    padding: 90px 25px;
    text-align: center;
    max-width: 100vw;
    margin: auto;
}


/*Seccion fecha*/

main>#divFecha {
    background: var(--marfil);
}

main>#divFecha .frase {
    font-family: 'Cormorant Garamond', serif;
    max-width: 60vw;
    margin: 0 auto 90px;
    font-weight: 400;
    font-size: 3rem;
    color: var(--rosa-oscuro);
}

main>#divFecha .fecha {
    font-family: 'Newsreader', serif;
    font-size: clamp(10rem, 8vw, 5rem);
    color: var(--dorado);
    letter-spacing: 8px;
    animation: aparecerSubtitulo 2.2s ease-out both;
}


/* =========================
   SECCIÓN GALERÍA
========================= */

#divGaleria {
    width: 100%;

    overflow: hidden;

    padding: 40px 0;
}


.galeria {
    display: flex;

    gap: 25px;

    width: max-content;

    animation: moverGaleria 120s linear infinite;
}


/* =========================
   FOTOS
========================= */

.galeria img {
    flex: 0 0 auto;

    width: 30vw;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    border-radius: 15px;

    box-shadow:
        0 10px 20px rgba(113, 63, 74, 0.15),
        0 20px 35px rgba(113, 63, 74, 0.10);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* =========================
   HOVER
========================= */

.galeria img:hover {

    transform: translateY(-8px);

    box-shadow:
        0 15px 25px rgba(113, 63, 74, 0.20),
        0 25px 40px rgba(113, 63, 74, 0.15);
}


/* =========================
   ANIMACIÓN
========================= */

@keyframes moverGaleria {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 25px));
    }

}

/* =========================
   CONTADOR
========================= */

#divContador {
    background: var(--blanco-puro);

    padding: 70px 20px;

    text-align: center;

    position: relative;
}


/* =========================
   LÍNEA SUPERIOR
========================= */

#divContador::before {
    content: "";

    display: block;

    width: 100%;

    max-width: 100vw;

    height: 1px;

    background: var(--rosa-chicle);

    margin: 0 auto 35px;

    opacity: 1;
}


/* =========================
   TÍTULO
========================= */

#tituloContador,
.p-dresscode,
#tituloUbi {
    font-family: 'Cormorant Garamond', serif;

    font-size: 6rem;

    font-weight: 400;

    color: var(--rosa-chicle);


    margin: 60px 0 100px;

    text-align: center;
    text-shadow:
        1px 2px 4px rgba(113, 63, 74, 0.18);
}


/* =========================
   CONTADOR
========================= */

.contador {
    display: flex;

    justify-content: center;

    align-items: flex-start;

    gap: 40px;

    flex-wrap: wrap;
}


/* =========================
   TARJETAS DEL CONTADOR
========================= */

.contador .unidad {
    position: relative;
    margin-top: 50px;
    width: 20vw;
    height: 60vh;

    padding: 50px 15px;

    background: var(--marfil);

    border: 1px solid var(--dorado-claro);

    border-radius: 8px;

    box-shadow:
        0 6px 15px rgba(113, 63, 74, 0.08);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* =========================
   NÚMEROS
========================= */

.contador .unidad span {
    display: block;

    font-family: 'Newsreader', serif;

    font-size: 15rem;

    line-height: 1;

    color: var(--dorado-claro);
    text-shadow:
        1px 2px 4px rgba(113, 63, 74, 0.18);

}


/* =========================
   TEXTO
========================= */

.contador .unidad p {
    margin: 8px 0 0;

    font-family: 'Cormorant Garamond', sans-serif;

    font-size: 3rem;

    font-weight: 400;

    text-transform: uppercase;

    letter-spacing: 3px;

    color: var(--dorado);
}




/* =========================
   UBICACIÓN
   ========================= */

main>#divUbicacion {
    padding: 50px;
    font-family: 'Cormorant Garamond', sans-serif;
    background-color: var(--rosa-viejo);
}

#tituloUbi {
    color: var(--rosa-palido);
    font-size: 6rem;
    font-weight: 400;
    text-shadow:
        1px 2px 4px rgba(113, 63, 74, 0.18);
}

.texto-ubicacion {
    color: var(--rosa-oscuro);
    font-size: 3.5rem;
    margin-bottom: 40px;
    padding-bottom: 15px;
    padding-top: 30px;
    font-weight: 400;
    text-shadow:
        1px 2px 4px rgba(113, 63, 74, 0.18);
}

.hora {
    color: var(--dorado-claro);
    font-size: 8rem;
    font-family: 'Newsreader', serif;
    padding-top: 35px;
    font-weight: 400;
    text-shadow:
        1px 2px 4px rgba(113, 63, 74, 0.18);
    animation: aparecerSubtitulo 2.2s ease-out both;
    background: linear-gradient(180deg,
            #9A641C 0%,
            #C58A2C 20%,
            #FFF0B0 40%,
            #D4A33E 55%,
            #E5B85C 70%,
            #9A641C 100%);

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;


}

.hora span {
    font-family: 'Cormorant Garamond', sans-serif;
}

.link {
    display: inline-block;
    text-shadow:
        1px 2px 4px rgba(113, 63, 74, 0.18);
    font-size: 2.5rem;
    color: var(--rosa-viejo);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--dorado);
    text-transform: uppercase;

    font-weight: 500;
    letter-spacing: 3px;
    padding-right: 30px;
    padding-left: 30px;
    background-color: color-mix(in srgb,
            var(--marfil) 80%,
            transparent);
    transition: 0.3s;
}

.link:hover, #divRspv a:hover {
    color: var(--dorado);
}


/* =========================
   RSVP
   ========================= */

#divRspv {
    background: linear-gradient(rgba(255, 255, 255, 0.75),
            rgba(255, 255, 255, 0.75)),
        url("textura.jpg") center / cover;


    padding: 50px;

    text-align: center;

    position: relative;
}

.texto-explicativo {
    font-family: 'Cormorant Garamond', serif;
    max-width: 60vw;
    margin: 0 auto 50px;
    font-weight: 400;
    font-size: 3.5rem;
    color: var(--rosa-oscuro);
}

#divRegalos {
    background-color: var(--marfil);


    padding: 50px;

    text-align: center;

    position: relative;
}

.cuenta {
    position: relative;

    margin: 20px auto 20px;

    width: min(500px, 80vw);

    min-height: 250px;

    padding: 40px 25px;

    background-color: var(--blanco-puro);

    border: 1px solid var(--dorado-claro);

    border-radius: 10px;

    box-shadow:
        0 8px 20px rgba(113, 63, 74, 0.10),
        0 2px 5px rgba(201, 164, 92, 0.10);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    text-shadow:
        1px 2px 4px rgba(113, 63, 74, 0.12);
}

.tipo-cuenta {
    font-family: 'Cormorant Garamond', serif;

    font-size: 3.5rem;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 3px;

    color: var(--rosa-viejo);

    margin-bottom: 15px;
}

.numero-cuenta {
    font-family: 'Newsreader', serif;

    font-size: 2.8rem;
    font-weight: 400;

    letter-spacing: 4px;

    color: var(--dorado);

    margin-bottom: 12px;
}

.nombre-cuenta {
    font-family: 'Cormorant Garamond', serif;

    font-size: 3rem;
    font-weight: 500;

    letter-spacing: 2px;

    color: var(--rosa-viejo);
}

#divDresscode {
    padding: 50px;

    text-align: center;

    position: relative;
}

#divDresscode::before {
    content: "";

    display: block;

    width: 100%;

    max-width: 100vw;

    height: 1px;

    background: var(--rosa-chicle);

    margin: 0 auto 35px;

    opacity: 1;
}

.dresscode-titulo {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 30px;
}

/* =========================
   ICONOS
========================= */

.icono-dresscode {
    width: 45px;
    height: 45px;
    padding-top: 10px;
    object-fit: contain;

    /* Negro → rosa viejo */
    filter:
        brightness(0) saturate(100%) invert(35%) sepia(18%) saturate(900%) hue-rotate(300deg) brightness(85%) contrast(90%);
}

#divRspv a {
    display: inline-block;
    text-shadow:
        1px 2px 4px rgba(113, 63, 74, 0.18);
    font-size: 2.5rem;
    color: var(--rosa-viejo);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--dorado);
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', sans-serif;
    font-weight: 500;
    letter-spacing: 3px;
    padding-right: 30px;
    padding-left: 30px;
    background-color: color-mix(in srgb,
            var(--marfil) 80%,
            transparent);
    transition: 0.3s;
}




/* =========================
   FOOTER
   ========================= */

footer {
    background: var(--rosa-oscuro);
    color: rgba(255, 255, 255, 0.75);
    text-align: center;

    padding: 100px 25px;
}

footer div {
    max-width: 600px;
    margin: auto;
}

footer h4 {
    margin: 30px, 30px;
    padding-bottom: 30px;
    color: var(--rosa-palido);
    font-size: 5rem;
    font-family: 'Parisienne', cursive;
}

.contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;

    text-shadow:
        1px 2px 4px rgba(113, 63, 74, 0.12);


    font-family: 'Cormorant Garamond', serif;

    font-size: 2.1rem;
    font-weight: 500;

    letter-spacing: 3px;

    color: var(--rose-gold-claro);
    opacity: 90%;

    margin-bottom: 15px;
}

.numero-contacto {
    font-family: 'Newsreader', serif;
}






















/*RESOLUCIONES*/

/*laptop 1440px*/

@media(max-width: 1440px) {

    /*Redimensionar reproductor*/
    .reproductor {
        width: 70%;
        margin-left: 75px;
        margin-right: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /*Redimensionar titulo y subtitulo en la portada*/
    #tituloPortada {
        font-size: 10.5rem;
        margin-top: 100px;
    }

    #subtituloPortada {
        letter-spacing: 3px;
        font-size: 4.5rem;

    }

    /*Afinar el borde*/
    main>#portada:after {
        border: 2px solid rgba(255, 255, 255, 0.55);

    }

    /*Redimensionar frase y achicar tamaño de fecha*/
    main>#divFecha .frase,
    .texto-explicativo {
        font-size: 2rem;
    }

    main>#divFecha .fecha {
        font-size: 8rem;
    }

    /*Achichar titulo del contador*/
    #tituloContador,
    .p-dresscode,
    #tituloUbi {
        font-size: 3.5rem;
    }

    #tituloContador,
    #tituloUbi {
        margin-bottom: 20px;
    }

    /*Redimensionar numeros y texto del contador*/

    .contador .unidad span {
        font-size: 10rem;
    }

    .contador .unidad p {
        font-size: 2.5rem;
    }

    /*Achicar titulo de ubicacion y texto*/

    /*Achicar el padding entre renglones*/
    #tituloUbi {
        margin-top: 20px;
    }

    .texto-ubicacion {
        font-size: 2.5rem;
        margin-bottom: 5px;
        padding: 10px;
    }

    /*Redimensionar a*/
    .link,
    #divRspv a {
        font-size: 2rem;
        margin-top: 10px;
    }

    /*Achicar hora*/
    .hora,
    .hora span {
        font-size: 5.5rem;
        padding-top: 50px;

    }

    /*Redimensionar frases para que entren en la misma pantalla*/
    /*Redimensionar tarjeta de la cuenta*/

    .cuenta {
        width: min(600px, 80vw);

        min-height: 200px;
        margin-top: 0px;
        margin-bottom: 0px;
        padding: 30px;
    }

    .tipo-cuenta,
    .nombre-cuenta {
        font-size: 2.5rem;
    }

    .numero-cuenta {
        font-size: 2rem;
    }

    /*Achicar letras del dresscode*/
    .p-dresscode {
        padding: 40px 10px;
        margin: 0px;
    }

    .icono-dresscode {
        width: 55px;
        height: 55px;
        padding-top: 10px;
    }

    .texto-explicativo {
        margin: 20px auto;
    }

    /*Redimensionar footer para que entre el dresscode y el footer en la misma pantalla*/

    footer {
        padding: 10px 50px;
    }

    footer h4 {
        padding-top: 20px;
    }

    footer .contacto {
        font-size: 1.5rem;
        gap: 5px;
        margin: 0;
    }

}

@media(max-width: 1024px) {

    /*Redimensionar reproductor*/
    .reproductor {
        width: 50%;
        margin-left: 170px;
        margin-right: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /*Redimensionar titulo y subtitulo en la portada*/
    #tituloPortada {
        font-size: 9.5rem;
        margin-top: 100px;
    }

    #subtituloPortada {
        letter-spacing: 3px;
        font-size: 4rem;
    }

    /*Afinar el borde*/
    main>#portada:after {
        border: 1.5px solid rgba(255, 255, 255, 0.55);
    }

    /*Redimensionar frase y achicar tamaño de fecha*/
    main>#divFecha .frase,
    .texto-explicativo {
        font-size: 1.8rem;
    }

    main>#divFecha .frase {
        margin: 20px auto;
    }

    main>#divFecha .fecha {
        font-size: 5.5rem;
    }

    /*Achichar titulo del contador*/
    #tituloContador,
    .p-dresscode,
    #tituloUbi {
        font-size: 3rem;
        margin: 20px auto;
    }

    #tituloContador,
    #tituloUbi {
        margin-bottom: 20px;
    }

    /*Redimensionar numeros y texto del contador*/
    .contador .unidad {
        width: 20vw;
        height: 40vh;
        padding: 50px;
        margin: 0;
    }

    .contador .unidad span {
        font-size: 8rem;
    }

    .contador .unidad p {
        font-size: 2rem;
        margin: 0;
    }

    /*Achicar titulo de ubicacion y texto*/
    /*Achicar el padding entre renglones*/
    #tituloUbi {
        margin-top: 10px;
    }

    .texto-ubicacion {
        font-size: 2rem;
        margin: 0;
        padding: 8px;
    }

    /*Redimensionar a*/
    .link,
    #divRspv a {
        font-size: 1.5rem;
        margin-top: 15px;
    }

    /*Achicar hora*/
    .hora,
    .hora span {
        font-size: 5.2rem;
        padding-top: 50px;
    }

    /*Redimensionar frases para que entren en la misma pantalla*/
    /*Redimensionar tarjeta de la cuenta*/
    .cuenta {
        width: min(700px, 80vw);
        min-height: 100px;
        margin-top: 0px;
        margin-bottom: 0px;
        padding: 20px;
    }

    .tipo-cuenta,
    .nombre-cuenta {
        font-size: 2rem;
    }

    .numero-cuenta {
        font-size: 1.8rem;
    }

    /*Achicar letras del dresscode*/
    .p-dresscode {
        padding: 40px 8px;
        margin: 0px;
    }

    .icono-dresscode {
        width: 45px;
        height: 45px;
        padding-top: 10px;
    }

    .texto-explicativo {
        margin: 20px auto;
    }

    /*Redimensionar footer para que entre el dresscode y el footer en la misma pantalla*/
    footer {
        padding: 10px auto;
    }

    footer h4 {
        padding: 0px;
    }

    footer .contacto {
        font-size: 1rem;
        gap: 5px;
        margin: 0;
    }
}

@media(max-width: 768px) {

    /*Redimensionar reproductor*/
    .reproductor {
        width: 80%;
        margin-left: 20px;
        margin-right: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /*Redimensionar titulo y subtitulo en la portada*/
    #tituloPortada {
        font-size: 9rem;
        margin-top: 150px;
    }

    #subtituloPortada {
        letter-spacing: 3px;
        font-size: 3.5rem;
    }

    /*Afinar el borde*/
    main>#portada:after {
        border: 1.5px solid rgba(255, 255, 255, 0.55);
    }

    /*Redimensionar frase y achicar tamaño de fecha*/
    main>#divFecha {
        padding: 50px;
    }

    main>#divFecha .frase,
    .texto-explicativo {
        font-size: 1.3rem;
        letter-spacing: 2px;
        font-weight: 500;
    }

    main>#divFecha .frase {
        margin: 20px auto;
    }

    main>#divFecha .fecha {
        font-size: 5rem;
    }

    /*Achichar titulo del contador*/
    #tituloContador,
    .p-dresscode,
    #tituloUbi {
        font-size: 2.5rem;
        margin: 15px auto;
    }

    #tituloContador,
    #tituloUbi {
        margin-bottom: 30px;
    }

    /*Redimensionar numeros y texto del contador*/
    .contador {
        gap: 20px;
    }

    .contador .unidad {
        width: 20vw;
        height: 30vh;
        padding: 50px;
        margin: 0px;
    }

    .contador .unidad span {
        font-size: 6rem;
    }

    .contador .unidad p {
        letter-spacing: 2px;
        font-size: 1.2rem;
        font-weight: 500;
        margin: 0;
    }

    /*Achicar titulo de ubicacion y texto*/
    /*Achicar el padding entre renglones*/
    #tituloUbi {
        margin-top: 0px;
    }

    .texto-ubicacion {
        font-size: 1.5rem;
        margin: 0;
        letter-spacing: 2px;
        font-weight: 500;
        padding: 3px;
    }

    /*Redimensionar a*/
    .link,
    #divRspv a {
        font-size: 1rem;
        margin-top: 20px;
    }

    /*Achicar hora*/
    .hora,
    .hora span {
        font-size: 4.8rem;
        padding: 10px auto;
    }

    /*Redimensionar frases para que entren en la misma pantalla*/
    /*Redimensionar tarjeta de la cuenta*/
    .cuenta {
        width: min(700px, 70vw);
        min-height: auto;
        margin-top: 20px;
        margin-bottom: 0px;
        padding: 20px;
    }

    .tipo-cuenta,
    .nombre-cuenta,
    .numero-cuenta {
        letter-spacing: 2px;
        font-weight: 500;
        font-size: 1.2rem;
    }

    /*Achicar letras del dresscode*/
    .p-dresscode {
        letter-spacing: 0.5px;
        font-size: 2rem;
        padding: 40px 0px;
        margin: 0px;
    }

    .icono-dresscode {
        width: 35px;
        height: 35px;
        padding-top: 10px;
    }

    .texto-explicativo {
        letter-spacing: 2px;
        margin: 15px auto 0px;
    }

    /*Redimensionar footer para que entre el dresscode y el footer en la misma pantalla*/
    footer {
        padding: 8px auto;
    }

    footer h4 {
        padding: 0px;
        padding-bottom: 15px;
        font-size: 2rem;
    }

    footer .contacto {
        letter-spacing: 1px;
        font-size: 0.8rem;
        gap: 2px;
        margin: 0;
    }

}
@media(max-width:660px){
    .reproductor {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        position: relative;
        left: -5%;
    }
    #tituloPortada {
        font-size: 6.5rem;
        margin-top: 300px;
    }
main>#divFecha .fecha {
        font-size: 3.5rem;
    }
.galeria img {
        width: 70vw;
    }

    .contador .unidad {
        width: 40vw;
        height: 25vh;
        padding: 50px;
        margin: 0px;
    }

    .contador .unidad span {
        font-size: 5.5rem;
    }

    .contador .unidad p {
        letter-spacing: 1.2px;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0;
    }

}

@media(max-width: 425px) {

    /*Redimensionar reproductor*/
    .reproductor {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        position: relative;
        left: -5%;
    }

    main>#portada {
        background:
            linear-gradient(rgba(40, 25, 30, 0.38),
                rgba(40, 25, 30, 0.50)),
            url("luli5.jpeg") 60% center / cover no-repeat;
    }

    /*Redimensionar titulo y subtitulo en la portada*/
    #tituloPortada {
        font-size: 7rem;
        margin-top: 300px;
    }

    #subtituloPortada {
        letter-spacing: 2px;
        font-size: 3rem;
    }

    /*Afinar el borde*/
    main>#portada:after {
        border: 1.5px solid rgba(255, 255, 255, 0.55);
    }

    /*Redimensionar frase y achicar tamaño de fecha*/
    main>#divFecha {
        padding: 50px;
    }

    main>#divFecha .frase,
    .texto-explicativo {
        font-size: 1.3rem;
        letter-spacing: 1.2px;
        font-weight: 600;
    }

    main>#divFecha .frase {
        margin: 20px auto;
    }

    main>#divFecha .fecha {
        font-size: 2.6rem;
        font-weight: 400;
    }

    main>#divGaleria {
        padding: 20px 0;
    }

    .galeria img {
        width: 70vw;
        height: auto;
    }

    /*Acercar linea y titulos*/
    #divContador::before {
        margin: 0;
    }

    /*Achichar titulo del contador*/
    #tituloContador,
    #tituloUbi {
        font-size: 2rem;
        letter-spacing: 2px;
        margin: 20px auto;
    }

    #tituloContador,
    #tituloUbi {
        margin-bottom: 20px;
    }


    /*Redimensionar numeros y texto del contador*/
    .contador {
        flex-wrap: wrap;
        gap: 20px;
    }

    .contador .unidad {
        width: 40vw;
        height: 25vh;
        padding: 50px;
        margin: 0px;
    }

    .contador .unidad span {
        font-size: 5.5rem;
    }

    .contador .unidad p {
        letter-spacing: 1.2px;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0;
    }

    /*Achicar titulo de ubicacion y texto*/
    /*Achicar el padding entre renglones*/
    #tituloUbi {
        margin-top: 0px;
    }

    .texto-ubicacion {
        font-size: 1.3rem;
        margin: 0;
        letter-spacing: 1.2px;
        font-weight: 600;
        padding: 2px;
    }

    /*Redimensionar a*/
    .link,
    #divRspv a {
        font-size: 1rem;
        margin-top: 20px;
        font-weight: 600;
    }

    /*Achicar hora*/
    .hora,
    .hora span {
        font-size: 4.5rem;
        padding: 10px auto;
    }

    /*Redimensionar frases para que entren en la misma pantalla*/
    /*Redimensionar tarjeta de la cuenta*/
    .cuenta {
        width: min(700px, 70vw);
        min-height: auto;
        margin-top: 15px;
        margin-bottom: 0px;
        padding: 20px;
    }

    .tipo-cuenta,
    .nombre-cuenta,
    .numero-cuenta {
        letter-spacing: 1.2px;
        font-weight: 600;
        font-size: 1.2rem;
    }

    /*Achicar letras del dresscode*/
    #divDresscode {
        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .icono-dresscode {
        display: block;

        width: 40px;
        height: 40px;

        padding:0px;

        /* evita que algún estilo anterior lo desplace */
        margin-left: auto;
        margin-right: auto;
    }

    .p-dresscode {
        display: block;
letter-spacing: 2px;
        padding: 5px 0;
        margin: 0px;
font-size: 2rem;
        text-align: center;
    }

    .texto-explicativo {
        letter-spacing: 2px;
        margin: 18px auto 2px;
    }

    /*Redimensionar footer para que entre el dresscode y el footer en la misma pantalla*/
    footer {
        padding: px auto;
    }

    footer h4 {
        padding: 0px;
        padding-bottom: 15px;
        font-size: 1.8rem;
    }

    footer .contacto {
        letter-spacing: 0.5px;
        font-size: 0.8rem;
        gap: 2px;
        margin: 0;
    }

}


@media(max-width: 320px) {

    /*Redimensionar reproductor*/
    .reproductor {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        position: relative;
        left: -7%;
    }

    main>#portada {
        background:
            linear-gradient(rgba(40, 25, 30, 0.38),
                rgba(40, 25, 30, 0.50)),
            url("luli5.jpeg") 57% center / cover no-repeat;
    }

    /*Redimensionar titulo y subtitulo en la portada*/
    #tituloPortada {
        font-size: 5rem;
        margin-top: 350px;
    }

    #subtituloPortada {
        letter-spacing: 1px;
        font-size: 2rem;
    }

    /*Afinar el borde*/
    main>#portada:after {
        border: 1px solid rgba(255, 255, 255, 0.55);
    }

    /*Redimensionar frase y achicar tamaño de fecha*/
    main>#divFecha,
    #divUbicacion {
        padding: 20px;
    }

    main>#divFecha .frase,
    .texto-explicativo {
        font-size: 1.1rem;
        letter-spacing: 1px;
        font-weight: 600;
    }

    main>#divFecha .frase {
        margin: 20px auto;
    }

    main>#divFecha .fecha {
        font-size: 2.8rem;
        font-weight: 400;
    }

    main>#divGaleria {
        padding: 20px 0;
    }

    .galeria img {
        width: 95vw;
        height: auto;
    }

    /*Acercar linea y titulos*/
    #divContador::before {
        margin: 0;
    }

    /*Achichar titulo del contador*/
    #tituloContador,
    #tituloUbi {
        font-size: 1.8rem;
        letter-spacing: 1.2px;
        margin: 20px auto;
    }

    #tituloContador,
    #tituloUbi {
        margin-bottom: 20px;
    }


    /*Redimensionar numeros y texto del contador*/
    .contador {
        flex-wrap: wrap;
        gap: 15px;
    }

    .contador .unidad {
        width: 40vw;
        height: 20vh;
        padding: 50px;
        margin: 0px;
    }

    .contador .unidad span {
        font-size: 5rem;
    }

    .contador .unidad p {
        letter-spacing: 1px;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0;
    }

    /*Achicar titulo de ubicacion y texto*/
    /*Achicar el padding entre renglones*/
    #tituloUbi {
        margin-top: 0px;
    }

    .texto-ubicacion {
        font-size: 1.3rem;
        margin: 0;
        letter-spacing: 1px;
        font-weight: 600;
        padding: 2px;
    }

    /*Redimensionar a*/
    .link,
    #divRspv a {
        font-size: 1rem;
        margin-top: 40px;
        font-weight: 600;
    }

    /*Achicar hora*/
    .hora,
    .hora span {
        font-size: 3.2rem;
        padding-top: 20px;
        padding-bottom: 0px;
    }

    /*Redimensionar frases para que entren en la misma pantalla*/
    /*Redimensionar tarjeta de la cuenta*/
    .cuenta {
        width: min(700px, 70vw);
        min-height: auto;
        margin-top: 15px;
        margin-bottom: 0px;
        padding: 20px;
    }

    .tipo-cuenta,
    .nombre-cuenta,
    .numero-cuenta {
        letter-spacing: 1px;
        font-weight: 600;
        font-size: 1rem;
    }

    .p-dresscode{
        
        font-size: 1.8rem;
        letter-spacing: 1.2px;
    }

    .texto-explicativo {
        letter-spacing: 1px;

        margin: 10px auto 0;

        text-align: center;
    }

    /*Redimensionar footer para que entre el dresscode y el footer en la misma pantalla*/
    footer {
        padding: 8px auto;
    }

    footer h4 {
        padding: 0px;
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 1.5rem;
    }

    footer .contacto {
        letter-spacing: 0.5px;
        font-size: 0.8rem;
        gap: 1.8px;
        margin: 0;
    }

}