@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sora:wght@100..800&display=swap');

/* Estilos principais do tema NeonForge */
body {
  margin: 0;
}

body {
  background-image: url('../images/bg-GRPCOM-10-30.svg');
  background-color: #fff;
  background-repeat: repeat;
  background-size: 110% auto;
  background-position: top center;
}

/* Footer Styles */
.footer-separator {
  height: 10px;
  background: linear-gradient(90deg, #E26A33 0%, #4C8BA7 100%);
  width: 100%;
}

.site-footer {
  background: rgba(241, 241, 241, 0.5);
  padding: 80px 64px;
  font-family: 'Barlow', sans-serif;
}

.footer-content {
  display: flex;
  gap: 64px;
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 80px;
}

.footer-column {
  flex: 1;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 864px;
}

.footer-logo {
  width: 180px;
  height: 48px;
}

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

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-item h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4em;
  color: #56585F;
  margin: 0;
}

.info-item p {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  color: #222222;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

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

.social-link img {
  width: 20px;
  height: 20px;
}

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

.footer-link {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5em;
  color: #56585F;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-credits {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
}

.credits-divider {
  height: 1px;
  background: linear-gradient(90deg, #E16A33 0%, #4C8BA6 100%);
  width: 100%;
}

.credits-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}

.copyright {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5em;
  color: #222222;
  margin: 0;
}

.credits-links {
  display: flex;
  gap: 24px;
}

.credits-link {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5em;
  color: #222222;
  text-decoration: none;
  transition: color 0.2s ease;
}

.credits-link:hover {
  color: #E16A33;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .site-footer {
    padding: 60px 40px;
  }
  
  .footer-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-logo-section {
    max-width: 100%;
  }
  
  .credits-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .credits-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 15px;
  }
  
  .footer-content {
    margin-bottom: 40px;
  }
  
  .footer-credits {
    gap: 20px;
  }
  
  .credits-links {
    flex-direction: column;
    gap: 10px;
  }
}

 