.section-main {
    /* height: calc(var(--real-vh, 1vh) * 90); */
    height: 100vh;
    /* border: 2px solid blue; */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.main-img {
    height: 100vh;
    /* width: 100%; */
    position: fixed;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(5%) brightness(0.6) contrast(90%);
    z-index: -1;
}

.main-container {
    /* height: calc(var(--real-vh, 1vh) * 90); */
    height: 100%;
    /* border: 2px solid green; */
    /* border: 2px solid blue; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* position: relative; */
}

.main-content {
    padding: 0px 30px;
    /* border: 2px solid red; */
    /* height: 82%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-container,
.section-main {
    overflow-x: visible;
    position: relative;
}

/* Decoraciones */
.decor {
    position: absolute;
    z-index: 4;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
    height: 60%;
    width: auto;
    will-change: transform, opacity;
}
.decor-sup {
    top: 0;
    right: 0;
}
.decor-inf {
    bottom: calc(-145px + env(safe-area-inset-bottom, 0));
    left: 0;
}

.decor-sup-2 {
    z-index: 3;
}

.decor-inf-2 {
    z-index: 3;
}

/* Elementos main */

.mini-frase {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: var(--font-texto);
    /* padding: 0 20px; */
    color: #eec172;
    white-space: nowrap;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9);
    margin-bottom: 20px;
}

.fecha-linea-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.linea {
    flex: 1;
    background-color: var(--color-texto);
    height: 0.5px;
}

.fecha {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: var(--font-texto);
    /* padding: 0 20px; */
    white-space: nowrap;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.8);
}

.nombres {
    font-family: var(--font-titulo);
    font-size: var(--tam-h1);
    font-weight: 400;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.8), 3px 3px 5px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.amp {
    font-size: 0.5em;
    vertical-align: middle;
    margin: 0 10px;
}

.nombre,
.amp {
    display: block;
}

.linea-inf {
    margin-bottom: 30px;
}

.frase-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 600px;
    margin-bottom: 0px;
}

.comilla-svg {
    width: 32px;
    opacity: 0.8;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.9));
}

.frase {
    font-family: var(--font-texto);
    font-size: var(--tam-h3);
    font-weight: 300;
    line-height: 1.6;
    margin: 2px 20px;
    text-align: center;
    color: var(--color-texto);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.9);
}

.linea-inf {
    background-color: var(--color-texto);
    height: 0.5px;
    width: 100%;
}

/* Musica */
.music-btn {
    position: fixed;
    height: 120px;
    width: 120px;
    z-index: 100;
    cursor: pointer;
    right: 20px;
    bottom: 0;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
}

.music-btn-img {
    z-index: 9998;
}
/* style="position: fixed; bottom: 20px; right: 20px; z-index: 9999; cursor: pointer;" */

/* ======================== */
/* RESPONSIVO */
/* ======================== */
@media screen and (max-width: 1024px) {
    .music-btn {
        height: 100px;
        width: 100px;
        bottom: 20px;
    }

    .decor {
        height: 50%;
    }
    .fecha {
        font-size: 1.4rem;
        text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    }
    .nombres {
        flex-direction: column;
        font-size: 6rem;
        margin-bottom: 0px;
    }
    .amp {
        font-size: 0.5em;
    }
    .frase {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .decor-inf {
        bottom: calc(-100px + env(safe-area-inset-bottom, 0));
        left: 0;
    }
    .linea-pre-fecha,
    .linea-post-fecha {
        width: 15%;
    }

    .decor {
        height: 40%;
    }
}

@media screen and (max-width: 480px) {
    /* Ajuste vh */
    .section-main {
        height: 100vh;
    }
    .main-container {
        height: 100%;
    }
    .main-content {
        height: 82%;
    }
    .decor-inf {
        bottom: calc(-20px + env(safe-area-inset-bottom, 0));
        left: 0;
    }

    /* Resto de elementos */
    .decor {
        height: 30%;
    }
    .fecha-linea-container {
        margin-bottom: 10px;
    }
    .nombres {
        font-size: 5rem;
        margin-bottom: 0px;
    }
    .amp {
        font-size: 0.4em;
    }
    .linea-inf {
        margin-bottom: 10px;
    }
    .frase {
        font-size: 1rem;
    }
    .comilla-svg {
        width: 22px;
    }
}
