* {
  box-sizing: border-box;
}

:root {
  font-size: 1.25rem;
}

.footer_site {
  background-color: #fff;
  padding: 1rem 1rem;
}

.footer_site .content {
  max-width: 1440px
  margin: 0 auto;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem; /* Espaçamento igual entre colunas */
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 18%;
  min-width: 12rem; /* 192px */
}

.footer-section h4 {
  margin-bottom: 0.625rem; /* 10px */
  font-size: 16px;
  font-weight: bold;
  color: #1B1919;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem; /* 8px */
}

.footer-section ul li a {
  text-decoration: none;
  color: #1B1919;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2.5rem; /* 40px */
  padding-top: 1.25rem; /* 20px */
  border-top: 1px solid #1B1919;
  gap: 1rem;
}

.footer-logo img {
  height: 1.25rem; 
}

.footer-bottom p {
  margin: 0 0 0.625rem 0; /* 10px */
  font-size: 14px; 
  color: #1B1919 !important;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.625rem; /* 10px */
}

.footer-social a img {
  height: 1rem;
  width: auto;
}

.footer-social a {
  margin-left: 0.4375rem; /* 7px */
}

.dupla-coluna {
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* 20px */
}

.sub-section {
  flex: 1 1 50%;
}

@media (max-width: 1024px) {
  .footer-section {
    flex: 1 1 45%;
  }

  .dupla-coluna {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .sub-section {
    flex: 1 1 45%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo img {
    margin-bottom: 1.25rem; /* 20px */
  }

  .footer-social {
    margin-top: 0.625rem;
  }

  .footer-section div > [role=menu] {
    padding: 0px !important;
  }
}