/* Start custom CSS *//* Título estilizado com limite de largura */
.page-title, 
h1.entry-title, 
h1.page-title {
    background: #B4B4B4 !important; /* mantém o verde */
    color: #fff !important;         /* mantém o texto branco */
    padding: 12px 30px !important;  /* mantém o espaçamento interno */
    border-radius: 999px !important; /* mantém o formato pílula */
    font-weight: 700 !important;
    font-size: 17px !important;
    text-align: center !important;
    
    /* CONTROLE DA LARGURA */
    width: 100% !important;         /* permite limitar */
    max-width: 300px !important;    /* ajuste AQUI */
    
    /* CENTRALIZAÇÃO */
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}/* End custom CSS */