.footer-footer {
  padding: 40px 20px 20px;
  box-shadow: 0 -4px 12px rgba(255, 102, 0, 0.096);
  width: 100%;
}

.footer-container-footer {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top-footer {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 2px solid #ff6600;
}

.flex-footer {
  display: flex;
  gap: 100px;
}

.barra-footer {
  width: 2px;
  background-color: #ff660030;
}

.logo-section-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  margin-right: 80px;
}

.logo-img-footer {
  width: 120px;
  height: 120px;
  max-width: 100%;
  height: auto;
}

.logo-title-footer {
  color: #ff6600;
  font-size: 20px;
  font-weight: 600;
  max-width: 150px;
  line-height: 1.3;
  margin: 0;
}

.navigation-section-footer,
.contact-section-footer {
  flex: 0 0 auto;
}

.navigation-section-footer {
  text-align: center;
}

.section-title-footer {
  color: #ff6600;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 0;
}

.navigation-links-footer,
.contact-info-footer {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item-footer,
.contact-item-footer {
  white-space: nowrap;
  margin-bottom: 8px;
}

.nav-link-footer {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: color 0.3s;
}

.nav-link-footer:hover {
  color: #ff6600;
}

.contact-item-footer {
  color: #333;
  font-size: 15px;
  word-break: break-word;
}

/* hover aplicado apenas ao próprio link */
.tags-links-footer {
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.contact-info-footer .tags-links-footer:hover {
    color: #bd4b00 !important;
}

.copyright-section-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  position: relative;
  flex-wrap: wrap;
}

.copyright-text-footer {
  color: #666;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.copyright-symbol-footer {
  font-size: 16px;
}

.social-icons-bottom-footer {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  gap: 10px;
}

.social-link-footer {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.social-link-footer:hover {
  transform: scale(1.1);
}

.social-icon-footer {
  width: 25px;
  height: 25px;
}

/* Responsividade para tablets grandes */
@media (max-width: 1100px) {
  .flex-footer {
    gap: 70px;
  }

  .logo-section-footer {
    margin-right: 50px;
  }
}

/* Responsividade para tablets médios */
@media (max-width: 1024px) {
  .flex-footer {
    gap: 50px;
  }

  .logo-section-footer {
    margin-right: 30px;
  }

  .logo-img-footer {
    width: 100px;
    height: 100px;
  }

  .logo-title-footer {
    font-size: 18px;
  }
}

/* Responsividade para tablets pequenos */
@media (max-width: 900px) {
  .footer-top-footer {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .logo-section-footer {
    margin-right: 0;
    justify-content: center;
  }

  .flex-footer {
    width: 100%;
    justify-content: center;
    gap: 80px;
  }

  .navigation-section-footer,
  .contact-section-footer {
    flex: 1;
    max-width: 250px;
  }

  .copyright-section-footer {
    flex-direction: column;
    gap: 15px;
  }

  .social-icons-bottom-footer {
    position: static;
    justify-content: center;
  }
}

/* Responsividade aprimorada para mobile (768px) */
@media (max-width: 768px) {
  .footer-footer {
    padding: 35px 20px 20px;
  }

  .footer-top-footer {
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding-bottom: 25px;
  }

  .logo-section-footer {
    flex-direction: column;
    text-align: center;
    margin-right: 0;
    gap: 12px;
  }

  .logo-img-footer {
    width: 100px;
    height: 100px;
  }

  .logo-title-footer {
    font-size: 19px;
    max-width: 100%;
  }

  .flex-footer {
    flex-direction: row;
    gap: 60px;
    width: 100%;
    max-width: 500px;
    justify-content: space-around;
  }

  .barra-footer {
    display: block;
    height: auto;
    align-self: stretch;
  }

  .navigation-section-footer,
  .contact-section-footer {
    text-align: center;
    flex: 1;
    min-width: 0;
  }

  .section-title-footer {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .nav-link-footer,
  .contact-item-footer {
    font-size: 14px;
  }

  .nav-item-footer,
  .contact-item-footer {
    margin-bottom: 10px;
  }

  .copyright-section-footer {
    padding-top: 25px;
    flex-direction: column;
    gap: 18px;
  }

  .copyright-text-footer {
    font-size: 13px;
    text-align: center;
    max-width: 90%;
  }

  .social-icons-bottom-footer {
    gap: 12px;
  }

  .social-link-footer {
    width: 42px;
    height: 42px;
  }

  .social-icon-footer {
    width: 26px;
    height: 26px;
  }
}

/* Responsividade para mobile médio - LOGO HORIZONTAL CENTRALIZADA COM BARRA EMBAIXO */
@media (max-width: 600px) {
  .footer-footer {
    padding: 30px 20px 20px;
  }

  .footer-top-footer {
    flex-direction: column;
    align-items: center;
    gap: 35px;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 35px;
  }

  /* Logo horizontal centralizada */
  .logo-section-footer {
    flex-direction: row;
    text-align: center;
    align-self: center;
    width: auto;
    gap: 15px;
    border-bottom: 2px solid #ff660045;
    margin-bottom: 10px;
  }

  .logo-title-footer {
    text-align: left;
    white-space: nowrap;
  }

  /* Conteúdo alinhado à esquerda */
  .flex-footer {
    flex-direction: column;
    gap: 35px;
    align-items: flex-start;
    max-width: 100%;
    width: 100%;
  }

  .barra-footer {
    display: none;
  }

  .navigation-section-footer,
  .contact-section-footer {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .section-title-footer {
    font-size: 19px;
    text-align: left;
    margin-bottom: 15px;
  }

  .nav-link-footer,
  .contact-item-footer {
    font-size: 16px;
    text-align: left;
  }

  .nav-item-footer,
  .contact-item-footer {
    white-space: normal;
    margin-bottom: 12px;
  }

  .copyright-section-footer {
    justify-content: flex-start;
    padding-top: 25px;
    border-top: 2px solid #ff6600;
  }

  .copyright-text-footer {
    text-align: left;
    max-width: 100%;
    font-size: 14px;
  }

  .social-icons-bottom-footer {
    justify-content: flex-start;
  }
}

/* Responsividade para mobile pequeno */
@media (max-width: 480px) {
  .footer-footer {
    padding: 25px 18px 18px;
  }

  .logo-section-footer {
    gap: 12px;
  }

  .logo-img-footer {
    width: 85px;
    height: 85px;
  }

  .logo-title-footer {
    font-size: 18px;
  }

  .flex-footer {
    gap: 30px;
  }

  .section-title-footer {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .nav-link-footer,
  .contact-item-footer {
    font-size: 15px;
  }

  .copyright-section-footer {
    padding-top: 20px;
  }

  .copyright-text-footer {
    font-size: 13px;
  }

  .social-link-footer {
    width: 38px;
    height: 38px;
  }

  .social-icon-footer {
    width: 23px;
    height: 23px;
  }
}

/* Responsividade para mobile muito pequeno */
@media (max-width: 360px) {
  .footer-footer {
    padding: 20px 15px 15px;
  }

  .logo-section-footer {
    gap: 10px;
  }

  .logo-img-footer {
    width: 75px;
    height: 75px;
  }

  .logo-title-footer {
    font-size: 16px;
  }

  .section-title-footer {
    font-size: 17px;
  }

  .nav-link-footer,
  .contact-item-footer {
    font-size: 14px;
  }

  .copyright-text-footer {
    font-size: 12px;
  }

  .social-link-footer {
    width: 35px;
    height: 35px;
  }

  .social-icon-footer {
    width: 21px;
    height: 21px;
  }
}
