.container_footer {
display: grid;
grid-template-columns: repeat(10, 1fr);
grid-template-rows: repeat(5, 1fr);
grid-column-gap: 7%;
grid-row-gap: 0px;
background-color: #092040;
color:#FEF7E5;
font-family: "NeueKabel";
}

.footer_1 {
   grid-area: 2 / 2 / 4 / 4; 
   & img{
    width: 100%;
   }
  }
.footer_2 {
   grid-area: 2 / 4 / 4 / 8; 
   border-right: 1px solid var(--bege);
  }
.footer_3 { 
  grid-area: 2 / 8 / 4 / 10; 
  display: grid;
}
  & a{
    font-size: larger;
    text-decoration: none;
    color: var(--bege);
  }
  & .footer_3 a:hover{
    text-decoration: underline;
  }

  @media(max-width:750px){
    .container_footer{
      & p, a{
        font-size: clamp(0.3rem,2.133vw,1rem);
      }
    }

    .footer_2 {
      padding-right: 10%;
    }

    .empresaJunior {
      font-size: 1.9vw !important;
    }
  }