/* ==========================================================================
   RODAPÉ (FOOTER) & DIREITOS AUTORAIS
   ========================================================================== */

.site-footer {
  background-color: var(--ignis-blue-navy);
  color: var(--bg-white);
  padding: 60px 0 30px;
  font-size: 0.9rem;
}

.footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  margin-bottom: 20px;
  display: block;
}

.footer-logo img {
  max-height: 52px;
  width: auto;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo img:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.footer-col h3, 
.footer-col h4 {
  font-family: var(--font-poppins);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 20px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--ignis-orange-primary);
  padding-left: 4px;
}

/* Bottom Footer (Copyright, Badge & Menus) */
.bottom-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-badge img {
  max-width: 130px;
  height: auto;
  display: block;
}

.footer-social-group,
.footer-social-links {
  display: flex;
  gap: 15px;
}

.footer-social-group a,
.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.footer-social-group a:hover,
.footer-social-links a:hover {
  background: #ff6d34;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-nav-menu {
  display: flex;
  gap: 20px;
}

.footer-nav-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-nav-menu a:hover {
  color: var(--ignis-orange-primary);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 25px;
  }
  
  .bottom-footer-content {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 60px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin: 0 auto 16px auto;
  }

  .footer-desc {
    max-width: 320px;
    margin: 0 auto 20px auto;
  }

  .footer-social-group,
  .footer-social-links {
    justify-content: center;
  }

  .footer-nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .bottom-footer-content {
    font-size: 0.8rem;
    padding: 20px 0;
  }
}
