boa tarde.
minha estilização no media queries nao ta funcionando, nao sei pq...
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HZC | Home</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap">
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/base.css">
<link rel="stylesheet" href="assets/css/cabecalho.css">
<link rel="stylesheet" href="assets/css/menu.css">
<link rel="stylesheet" href="assets/css/cartao.css">
<link rel="stylesheet" href="assets/css/secao.css">
</head>
@media screen and (min-width: 1440px){
.cabecalho{
background-color: #1D232A;
display: grid;
column-gap: 32px;
grid-template-columns: 1fr auto;
padding: 16px 60px;
height: 80px;
box-sizing: border-box;
}
.cabecalho__menu{
display: none;
}
.cabecalho__logo{
display: none;
}
.cabecalho__perfil{
display: grid;
grid-template-columns: repeat(3, auto);
column-gap: 8px;
align-items: center;
justify-self: flex-end;
color: #95999C;
padding: 8px 32px;
border-right: 1px solid #95999C;
}
.cabecalho__perfil::before{
content: "";
display: block;
width: 32px;
height: 32px;
background-image: url(../img/profile_1.png);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.cabecalho__perfil::after{
content: "\e90d";
color: #FFFFFF;
font-size: 1.5rem;
}
}