body {
    background:url('backgroundSoporte.jpg') no-repeat center center fixed;
    background-size:cover;
}

.pagina {
    height: calc(100dvh - 55px);
    /*background-color: rgb(70, 70, 70);*/

    /* estilos base para escritorio */
    max-width: 816px;          /* ancho tipo carta */
    width: 100%;               /* permite que se adapte si es más pequeño */
    margin: 0 auto;            /* centra horizontalmente */
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;       /* opcional */
    font-family: Arial, Helvetica, sans-serif;
    font-size:18px;


}

ul {
    margin-bottom:50px;
    width: 90%;
}

li {
    margin-bottom:25px;
    text-align: justify;
}

@media (max-width: 900px) {
    .pagina {
        max-width: 100%;       /* ocupa todo el ancho en móviles */
        padding: 20px;
        box-sizing: border-box;
        border-radius: 10px;       /* opcional */
        font-family: Arial, Helvetica, sans-serif;
    }
}

.ornamento-minimal {
    border: none;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        #c6a46d 20%,
        #c6a46d 80%,
        transparent
    );
    position: relative;
    margin: 40px auto;
    width: 80%;
}

.ornamento-minimal::before {
    content: "✦";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: #c6a46d;
}







