/*--------------------------------------------------------------
# Footer - Layout da Imagem
--------------------------------------------------------------*/

.site-footer {
  background: #FAFAFA;
  border-top: 1px solid #E5E5E5;
  padding: 60px 0 0;
}

.footer-widgets {
  padding-bottom: 40px;
}

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

@media (max-width: 1024px) {
  .footer-widgets-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-widgets-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Footer Brand (Coluna 1) */
.footer-brand {
  max-width: 320px;
}

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

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

.footer-logo-text {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #7B2EFF 0%, #0090C8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F0F0;
  border-radius: 8px;
  color: #666666;
  transition: all 0.2s;
}

.footer-social:hover {
  background: linear-gradient(135deg, #7B2EFF 0%, #0090C8 100%);
  color: white;
  transform: translateY(-2px);
}

/* Footer Widget Titles */
.footer-widget-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0D1117;
  margin-bottom: 20px;
}

/* Footer Menu */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu a {
  color: #666666;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-menu a:hover {
  color: #0090C8;
}

/* Site Info (Bottom Bar) */
.site-info {
  border-top: 1px solid #E5E5E5;
  padding: 24px 0;
  background: #FAFAFA;
}

.site-info-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .site-info-inner {
    flex-direction: column;
    gap: 20px;
  }
}

.copyright {
  flex: 1;
}

.copyright p {
  font-size: 14px;
  color: #666666;
  margin: 0 0 6px 0;
  line-height: 1.5;
}

.copyright em {
  font-style: italic;
  color: #999999;
}

.disclaimer {
  font-size: 12px !important;
  color: #999999 !important;
  margin-top: 8px !important;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-bottom-links a {
  font-size: 13px;
  color: #666666;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #0090C8;
}
