<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Estilos gerais */



.phone-number {
    display: none; /* Inicialmente, esconda o nÃºmero de telefone */
}

/* Media query para dispositivos com largura mÃ¡xima de 768 pixels (considerado como um dispositivo mÃ³vel) */

@media only screen and (max-width: 768px) {
    .phone-number {
        display: block; /* Mostre o nÃºmero de telefone apenas em dispositivos mÃ³veis */
        background-color: #f0f0f0;
        padding: 10px;
        margin-top: 10px;
    }

    #mobile-number {
        font-weight: bold;
    }
}
</pre></body></html>