.cabecalho__titulo {
    background-clip: text;
    background-image: linear-gradient(to right, var(--cor2), var(--cor1));    
    color: black;
    font-family: var(--font-titulo);
    font-size: 3.5rem;    
    font-weight: bold; 
    letter-spacing: -5%; 
    line-height: 3.1rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;  
}

.cabecalho__titulo::before {
    color: var(--cor2);
    content: "\003C";    
}

.cabecalho__titulo--fechamento {
    background-clip: text;
    background-image: linear-gradient(to right, var(--cor2), var(--cor1)); 
    background-repeat: no-repeat;
    background-size: 66.66% auto;   
    color: black;
    font-family: var(--font-titulo);
    font-size: 2.3331rem;    
    font-weight: bold; 
    letter-spacing: -5%; 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}

.cabecalho__titulo--fechamento::before {
    content: "\003C" "\002F";
}

.cabecalho__titulo--fechamento::after {   
    content: "\003e";
}

@media screen and (min-width: 600px) and (min-width: 1239px){

    .cabecalho__titulo {        
        line-height: calc(3rem * 1.2);  
    }

    .cabecalho__titulo--fechamento {
        background-size: 33.33% auto; 
        font-size: 2rem; 
    }

}

@media screen and (min-width: 1240px) {

    .cabecalho__titulo {        
        line-height: calc(3rem * 1.2);  
    }

    .cabecalho__titulo--fechamento {
        font-size: 2rem; 
    }

}

