/* ===== FOOTER ===== */

/* Top Footer - Acesso Rápido */
.top-footer {
  background: #024a67;
  padding: 1.5rem 0;
  color: white;
}

.acesso-rapido-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.acesso-item {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  font-weight: 600;
}

.acesso-item:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-2px);
}

.acesso-item i {
  font-size: 1.25rem;
}

/* Main Footer */
.main-footer {
  background: white;
  padding: 3rem 0 1.5rem;
  color: #374151;
  border-top: 1px solid #e5e7eb;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-img {
  width: 45px;
  height: 45px;
  background: #f97316;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img i {
  font-size: 1.75rem;
  color: white;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1;
}

.footer-logo-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6b7280;
}

.footer-section h4 {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #374151;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s;
}

.footer-link:hover {
  color: #f97316;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-item i {
  font-size: 1.25rem;
  color: #f97316;
  margin-top: 0.25rem;
}

.contact-item-content {
  flex: 1;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.contact-item-content > div {
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
}

.whatsapp-link {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.whatsapp-link:hover {
  color: #ea580c;
}

/* Bottom Footer */
.bottom-footer {
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem;
}

.bottom-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link-footer {
  width: 36px;
  height: 36px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.social-link-footer:hover {
  background: #f97316;
  color: white;
}

.scroll-top-btn {
  width: 36px;
  height: 36px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  color: #6b7280;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.scroll-top-btn:hover {
  background: #f97316;
  color: white;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer-section h4,
  .footer-link {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-description {
    text-align: center;
  }

  /* Melhorar layout dos contatos no mobile */
  .contact-info {
    align-items: center;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .contact-item i {
    margin-top: 0;
    font-size: 1.5rem;
  }

  .contact-item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .top-footer {
    padding: 1rem 0.5rem;
  }

  .acesso-rapido-grid {
    gap: 0.75rem;
  }

  .acesso-item {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .acesso-item i {
    font-size: 1.1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .main-footer {
    padding: 2rem 1rem 1.5rem;
  }

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

@media (max-width: 576px) {
  .acesso-rapido-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .acesso-item {
    font-size: 0.8rem;
    padding: 0.5rem;
    gap: 0.5rem;
  }

  /* Melhorar espaçamento dos contatos em telas muito pequenas */
  .contact-info {
    gap: 1.5rem;
  }

  .contact-item {
    padding: 0.5rem;
  }

  .whatsapp-link {
    font-size: 0.9rem;
  }
}
