/* ===== novo footer ===== */

.footer {
  background-color: #0B004A;
  padding: 40px 20px;
  /*position:relative;*/
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Lado esquerdo */
.footer-info {
  display: flex;
  flex-direction:row;
  gap: 50px;
}

.footer-address {
  color: #ccc;
  font-size: 12px;
  line-height: 1.5;
  max-width: 420px;
}

.footer-icons-center  {
 position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}

.footer-icons-center a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*background-color: #0B004A;*/
  border-radius: 50%;
 /*transition: background-color 0.3s ease;*/
}

.footer-icons-center a:hover {
  background-color: #333;
   border-radius: 50%;
  background-color:#ccc;
  transition: background-color 0.3s ease;
}

.footer-icons-center img {
  width: 40px;
  height: 40px;
}

  .footer-info {
    align-items: center;
  }

  .footer-address {
    max-width: 100%;
  }

/* Lado direito */
.footer-logo img {
  max-width: 180px;
  height: auto;
}

/* Responsivo */

@media (max-width: 768px) {
.footer {
  background-color: #0B004A;
  padding: 40px 20px;
  position:relative;
}
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .footer-icons-center {
    margin-top: 30px;
  }

  /*.footer-logo {
    margin-bottom: 30px;
  }*/

  .footer-address {
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .footer-icons-center {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
  }
}

@media (max-width: 900px) {

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  /* LOGO */
  .footer-logo {
    order: 1;
  }

  /* ÍCONES */
  .footer-icons-center {
    position: static;          /* 🔴 ESSENCIAL */
    transform: none;           /* 🔴 ESSENCIAL */
    order: 2;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 0;             /* remove gambiarra */
  }

  /* ENDEREÇO */
  .footer-info {
    order: 3;
    align-items: center;
  }

}

/*@media (max-width: 768px) {
  .footer-icons-center {
    order: 1;
  }
  .logo-logo {
    order: 2;
  }
  .footer-info {
    order: 3;
  }
}
  

/* ===== fim do novo footer ===== */
