.site-footer {
  position: relative;
  padding: 70px 24px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--azul-oscuro);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 48px));
  height: 3px;
  background: var(--azul-brillante);
  content: "";
  transform: translateX(-50%);
}

.site-footer__container {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-bottom: 60px;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 80px;
}

.site-footer__brand {
  max-width: 360px;
}

.site-footer__logo {
  display: inline-flex;
  margin-bottom: 22px;
  align-items: center;
  text-decoration: none;
}

.site-footer__logo img {
  display: block;
  width: 110px;
  height: 110px;
  object-fit: contain;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.site-footer__logo:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 14px rgba(22, 131, 255, 0.35));
}

.site-footer__description {
  max-width: 340px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.site-footer__title {
  margin: 0 0 24px;
  color: var(--blanco);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-footer__navigation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.site-footer__navigation a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.site-footer__navigation a:hover {
  color: var(--azul-brillante);
  transform: translateX(5px);
}

.site-footer__contact p {
  max-width: 310px;
  margin: 0 0 25px;
  font-size: 15px;
  line-height: 1.7;
}

.site-footer__whatsapp {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  color: var(--blanco);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: var(--azul-principal);
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.site-footer__whatsapp span {
  font-size: 20px;
  transition: transform 0.25s ease;
}

.site-footer__whatsapp:hover {
  color: var(--blanco);
  background: var(--azul-brillante);
  transform: translateY(-2px);
}

.site-footer__whatsapp:hover span {
  transform: translateX(4px);
}

.site-footer__bottom {
  display: flex;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 13px;
}

.site-footer__bottom a {
  color: var(--azul-brillante);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__bottom a:hover {
  color: var(--blanco);
}

@media (max-width: 800px) {
  .site-footer {
    padding: 55px 20px 0;
  }

  .site-footer__container {
    padding-bottom: 45px;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .site-footer__brand {
    max-width: none;
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-footer__container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__logo img {
    width: 100px;
    height: 100px;
  }

  .site-footer__description {
    max-width: 100%;
  }

  .site-footer__bottom {
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
