.contato {    
    color: var(--cor0);
    display: block;
    font-family: var(--font-texto);
    font-size: 1rem; 
    line-height: 120%;
    margin-bottom: 64px;
    margin-top: 24px;
    overflow: hidden;  
}

.contato::before, .contato::after {
    color: var(--cor1); 
    font-size: 1.3rem;    
    font-weight: bold;    
    margin-right: 1rem;
}

.contato::before {
    content: "\003C" "Contato";;
}

.contato::after {
    content: "\002F" "\003e";
}

.contato > p:first-child {    
    margin-top: 0.75rem; 
}

.contato > p:last-child {    
    margin-bottom: 0.75rem; 
}

.contato__telefone, .contato__email {
    font-weight: 100;
}


.contato__telefone::before, .contato__email::before {
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.contato__telefone {
    margin-right: 1rem;
}

.contato__telefone::before {
    content: "tel" "\003D";    
}

.contato__email::before {
    content: "e-mail" "\003D";
}

.contato__aspas::before, .contato__aspas::after {
    content: "\FF02";
}



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

    .contato {
        align-items: baseline;
        display: flex;     
        font-size: 1.1rem;    
    }

    .contato::before, .contato::after {
        font-size: 1.1rem;  
    }

    .contato > p:first-child {    
        margin-top: 0; 
    }
    
    .contato > p:last-child {    
        margin-bottom: 0; 
    }

}