/* =====================================================
   FOOTER - JR HOSTING
===================================================== */

.footer {
  width: 100%;

  background: #020d1d;

  color: #ffffff;

  padding-top: 34px;
}

/* =====================================================
   CONTENEDOR
===================================================== */

.footer .container {
  width: 100%;
  max-width: 1450px;

  margin: 0 auto;

  padding: 0 30px;
}

/* =====================================================
   GRID PRINCIPAL
===================================================== */

.footer-grid {
  display: grid;

  grid-template-columns:
    2.3fr
    1fr
    1fr
    1.25fr;

  column-gap: 85px;

  align-items: start;

  padding-bottom: 32px;
}

/* =====================================================
   MARCA
===================================================== */

.footer-brand {
  min-width: 0;

  max-width: 440px;
}

.footer-brand img {
  display: block;

  width: 245px;
  height: auto;

  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 430px;

  margin: 0;

  color: #cbd5e1;

  font-size: 16px;

  line-height: 1.55;
}

/* =====================================================
   REDES SOCIALES
===================================================== */

.footer-social {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-top: 18px;
}

.footer-social a {
  width: 50px;
  height: 50px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.02);

  border: 1px solid rgba(148, 163, 184, 0.3);

  color: #ffffff;

  text-decoration: none;

  font-size: 21px;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

/* FACEBOOK */

.footer-social a:nth-child(1) {
  color: #2563eb;
}

/* INSTAGRAM */

.footer-social a:nth-child(2) {
  color: #e1306c;
}

/* WHATSAPP */

.footer-social a:nth-child(3) {
  color: #10b981;
}

.footer-social a:hover {
  transform: translateY(-3px);

  background: rgba(255, 255, 255, 0.06);

  border-color: rgba(148, 163, 184, 0.5);
}

/* =====================================================
   COLUMNAS
===================================================== */

.footer-column {
  min-width: 0;
}

/* TÍTULOS */

.footer-column h4 {
  position: relative;

  display: inline-block;

  margin: 5px 0 18px;

  padding-bottom: 11px;

  color: #ffffff;

  font-size: 18px;

  font-weight: 700;

  line-height: 1.2;
}

/* LÍNEA AZUL */

.footer-column h4::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 32px;
  height: 2px;

  background: #2563eb;
}

/* =====================================================
   LISTAS
===================================================== */

.footer-column ul {
  margin: 0;

  padding: 0;

  list-style: none;
}

.footer-column li {
  margin-bottom: 13px;

  color: #cbd5e1;

  font-size: 16px;

  line-height: 1.4;
}

.footer-column li:last-child {
  margin-bottom: 0;
}

/* ENLACES */

.footer-column li a {
  color: #cbd5e1;

  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-column li a:hover {
  color: #ffffff;
}

/* =====================================================
   ICONOS DE CONTACTO
===================================================== */

.footer-column li > i {
  width: 25px;

  margin-right: 8px;

  color: #2563eb;

  font-size: 20px;

  text-align: center;

  vertical-align: middle;
}

/* WHATSAPP */

.footer-column li:first-child > i {
  color: #10b981;
}

/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);

  padding: 16px 0 18px;

  text-align: center;
}

.footer-bottom p {
  margin: 0;

  color: #94a3b8;

  font-size: 15px;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns:
      1.7fr
      1fr
      1fr;

    gap: 40px;
  }

  .footer-brand {
    grid-column: span 3;

    max-width: 600px;
  }
}

/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 650px) {
  .footer {
    padding-top: 35px;
  }

  .footer .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .footer-brand {
    grid-column: auto;

    max-width: 100%;
  }

  .footer-brand img {
    width: 210px;
  }

  .footer-brand p {
    font-size: 15px;
  }

  .footer-column h4 {
    margin-bottom: 18px;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}
