.footer {
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  background-color: #00f953;
  padding: 1.5em 0.2em;
  flex-wrap: wrap;
  text-align: center;
}

.footer-container-a1 {
  width: 48%;
  display: inline-block;
}

.footer-logo-size {
  width: 40%;
  height: auto;
}

.footer-container-a2,
.footer-container-a3 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 10px;
  font-size: 1rem;
  background-color: #013129;
  color: #00f953;
  border-radius: 4px;
  margin: 5px;
  box-sizing: border-box;
}

/* Diferencie apenas a largura */
.footer-container-a2 {
  width: 40%;
  cursor: pointer;
}

.footer-icon-size {
  width: 100%;
  max-width: 40px; /* tamanho máximo no desktop */
  height: auto;
}

/* Novo grupo para os botões no desktop */
.footer-action-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap; /* Evita quebra feia */
}

.footer-infos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #013129;
}

.footer-endereco,
.footer-chamada {
  width: 100%;
}

.footer-contatos {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-contatos div {
  flex: 1;
  min-width: 100px;
}

.footer-chamada {
  font-size: 1.3rem; /* tamanho base maior que o normal */
  font-weight: bold;
  line-height: 1.4;
  color: #013129;
}

@media (max-width: 1600px) {
  .footer {
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    background-color: #00f953;
    padding: 1.5em 0.2em;
    flex-wrap: wrap;
    text-align: center;
  }

  .footer-container-a1 {
    width: 48%;
    display: inline-block;
  }

  .footer-logo-size {
    width: 40%;
    height: auto;
  }

  .footer-container-a2,
  .footer-container-a3 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 10px;
    font-size: 0.7rem;
    background-color: #013129;
    color: #00f953;
    border-radius: 4px;
    margin: 5px;
    box-sizing: border-box;
  }

  /* Diferencie apenas a largura */
  .footer-container-a2 {
    width: 30%;
    cursor: pointer;
  }

  .footer-icon-size {
    width: 100%;
    max-width: 30px; /* tamanho máximo no desktop */
    height: auto;
  }

  /* Novo grupo para os botões no desktop */
  .footer-action-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; /* Evita quebra feia */
  }

  .footer-infos {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.8rem;
    color: #013129;
  }

  .footer-endereco,
  .footer-chamada {
    width: 100%;
  }

  .footer-contatos {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-contatos div {
    flex: 1;
    min-width: 100px;
  }

  .footer-chamada {
    font-size: 1rem; /* tamanho base maior que o normal */
    font-weight: bold;
    line-height: 1.4;
    color: #013129;
  }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .footer {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    background-color: #00f953;
    padding: 1.5em 0.2em;
    flex-wrap: wrap;
    text-align: center;
  }
  .footer-container-a1 {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-logo-size {
    width: 60%;
  }

  .footer-action-group {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .footer-container-a2 {
    width: 50%;
    font-size: 0.9rem;
    height: 50px;
    margin-bottom: 10px;
    cursor: pointer;
  }

  .footer-container-a3 {
    min-width: 20%;
    font-size: 0.9rem;
    height: 50px;
    margin-bottom: 10px;
  }

  .footer-icon-size {
    max-width: 40px;
  }

  .footer-contatos {
    flex-direction: column;
    gap: 5px;
  }

  .footer-chamada {
    text-align: center;
    font-size: 1.1rem;
  }
}
