/*------------------- 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: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 40px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .site-footer__info {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .site-footer__info {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.footer-hours-location {
  width: 100%;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  flex: 1;
}

.footer-info-item > div {
  flex: 1;
}

.footer-info-item i {
  color: #ff5b23;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-info-item span {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-group {
  flex-direction: column;
  gap: 20px;
}

.footer-contact-group .footer-contact {
  flex-direction: row;
  gap: 12px;
}

.footer-hours-location {
  flex-direction: column;
}

.footer-hours-location > div {
  display: flex;
  flex-direction: column;
}

.footer-hours-location a:hover {
  color: #ff5b23 !important;
  text-decoration: underline !important;
}

.footer-contact {
  flex-direction: column;
  gap: 8px;
}

.footer-contact i {
  margin-top: 0;
  flex-shrink: 0;
}

.footer-contact__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact__details strong {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}

.footer-contact__details span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 4px;
}

.footer-contact__details a {
  color: #63ff3d;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-contact__details a:hover {
  color: #5dff39;
  transform: translateX(3px);
}

.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: flex-start;
    gap: 20px;
    padding-bottom: 30px;
    margin-bottom: 20px;
  }

  .footer-info-item {
    min-width: 100%;
    width: 100%;
  }

  .footer-contact {
    width: 100%;
  }
}

@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;
  }

  .footer-info-item {
    font-size: 13px;
  }

  .footer-contact__details strong {
    font-size: 14px;
  }

  .footer-contact__details span {
    font-size: 12px;
  }

  .footer-contact__details a {
    font-size: 13px;
  }

  .site-footer__bottom {
    font-size: 12px;
    padding: 15px 0;
  }
}
