footer {
    display: flex;
    flex-wrap: wrap;
    background-color: #063d73;
    padding: 60px 10%;
    justify-content: center;
    margin: 0; /* Adicionado para evitar espaçamento extra */
}

.status-tech {
    height: auto; /* Permite ajuste dinâmico */
    padding: 10px 0;
    background-color: #072e55;
    text-align: center;
    color: #eee;
    margin: 0; /* Remove espaços extras */
}

.poch {
    display: block; /* Garante alinhamento */
    margin: auto; /* Centraliza a imagem */
    width: auto; /* Permite ajuste dinâmico */
    height: auto; /* Ajuste responsivo */
    max-width: 100%; /* Evita estouro */
    max-height: 50px; /* Altura máxima */
    margin-top: 4vh;
}

  
ul{
    list-style: none;
}
  
.footer-col{
    width: 25%;
}
  
.footer-col h4{
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
}

.footer-col h4 a{
    color: #fff;
    text-decoration: none !important;
}
  
.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: #27c0ac;
    height: 2px;
    width: 40px;
}
  
ul li:not(:last-child){
    margin-bottom: 8px;
}
  
.footer-col ul li a{
    display: block;
    font-size: 19px;
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
}
  
.footer-col ul li a:hover{
    color: #bbb;
    padding-left: 2px;
}
  
.links a{
    display: inline-block;
    height: 44px;
    width: 44px;
    color: white;
    background-color: rgba(40, 130, 214, 0.8);
    margin: 0 8px 8px 0;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    transition: 0.4s;
}
  
.links a:hover{
    color: #4d4f55;
    background-color: white;
}

.status-tech h4 a{
    margin-top: 15px;
    color: #fff;
    text-decoration: none !important;
}
  
@media(max-width: 740px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
    }
  
    .footer-col h4::before{
        all: unset;
    }
}
  
@media(max-width: 555px){
    .footer-col{
        width: 100%;
    }
}