/* Footer principal */
.site-footer {
  background-color: #fff;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(51, 53, 125, 0.1);
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem 2rem;
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  padding-right: 84px;
  text-align: center;
}

.site-footer-brand {
  padding-top: 0.35rem;
}

.site-footer-col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer-col h4 {
  color: #33357d;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.site-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-links li {
  margin-bottom: 0.25rem;
}

.site-footer-links a {
  color: rgba(51, 53, 125, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.site-footer-links a:hover {
  color: #81aae0;
}

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

.site-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(51, 53, 125, 0.08);
  color: #33357d;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer-social a:hover {
  background-color: #81aae0;
  color: #fff;
  transform: translateY(-3px);
}

.site-footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #33357d;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-phone i {
  transform: rotate(100deg);
}

.site-footer-phone:hover {
  color: #81aae0;
}

@media screen and (max-width: 575.98px) {
  .site-footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    padding-right: 0;
  }
}
