/*------------------- Site Footer Styles -------------------*/
.site-footer {
  background: linear-gradient(180deg, #0a0b15 0%, #050612 100%);
  color: #ffffff;
  font-family: 'Fredoka', sans-serif;
  padding: 80px 0 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff5b23 0%, #6200a3 50%, #3dff39 100%);
}

.site-footer__container {
  width: min(1140px, 94vw);
  margin: 0 auto;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__logo img {
  height: 80px;
  width: auto;
}

.site-footer__links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

.site-footer__links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff5b23;
  transition: width 0.3s ease;
}

.site-footer__links a:hover {
  color: #ff5b23;
}

.site-footer__links a:hover::after {
  width: 100%;
}

.site-footer__cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff5b23 0%, #ff8c00 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 91, 35, 0.3);
}

.site-footer__cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 91, 35, 0.4);
}

.site-footer__info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding-bottom: 40px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__info span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__info i {
  color: #ff5b23;
  font-size: 16px;
}

.site-footer__info a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer__info a:hover {
  color: #ff5b23;
}

.site-footer__bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

/* Responsivo do Footer */
@media (max-width: 991px) {
  .site-footer {
    padding: 60px 0 0;
    margin-top: 60px;
  }

  .site-footer__top {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .site-footer__logo img {
    height: 70px;
  }

  .site-footer__links {
    justify-content: center;
    gap: 20px;
  }

  .site-footer__info {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .site-footer {
    padding: 40px 0 0;
    margin-top: 40px;
  }

  .site-footer__logo img {
    height: 60px;
  }

  .site-footer__links {
    gap: 15px;
  }

  .site-footer__links a {
    font-size: 14px;
  }

  .site-footer__cta a {
    padding: 10px 20px;
    font-size: 14px;
  }

  .site-footer__info span {
    font-size: 13px;
  }

  .site-footer__info i {
    font-size: 14px;
  }

  .site-footer__bottom {
    font-size: 12px;
    padding: 15px 0;
  }
}
