/* =========================================================
   GRUPO PROYECTO - FOOTER
   ========================================================= */

.gp-footer {
  position: relative;
  background: #111214;
  color: #ffffff;
  overflow: hidden;
}


/* =========================================================
   CONTENEDOR PRINCIPAL
   ========================================================= */

.gp-footer-main {
  padding: 75px 0 65px;
}

.gp-footer-container {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1.45fr
    0.75fr
    0.95fr
    1.35fr
    1.15fr;

  gap: 55px;

  align-items: start;
}


/* =========================================================
   LOGO / IDENTIDAD
   ========================================================= */

.gp-footer-brand {
  padding-right: 25px;
}

.gp-footer-logo {
  display: inline-block;
  margin-bottom: 25px;
}

.gp-footer-logo img {
  display: block;
  width: 155px;
  height: auto;
  max-height: 65px;
  object-fit: contain;
}


/* DESCRIPCIÓN */

.gp-footer-description {
  margin: 0 0 28px;

  max-width: 280px;

  color: #a7a8ad;

  font-size: 14px;
  line-height: 1.85;

  font-weight: 400;
}


/* =========================================================
   BOTÓN
   ========================================================= */

.gp-footer-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  padding: 12px 20px;

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;

  color: #ffffff !important;

  font-size: 14px;
  font-weight: 500;

  text-decoration: none !important;

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.gp-footer-button i {
  font-size: 14px;
}

.gp-footer-button:hover {
  color: #ffffff !important;

  background: #1747ff;

  border-color: #1747ff;

  transform: translateY(-2px);
}


/* =========================================================
   COLUMNAS
   ========================================================= */

.gp-footer-column h5,
.gp-footer-contact h5 {
  margin: 0 0 25px;

  color: #ffffff !important;

  font-size: 17px;
  line-height: 1.3;

  font-weight: 600;
}


.gp-footer-column ul {
  margin: 0;
  padding: 0;

  list-style: none;
}


.gp-footer-column li {
  margin: 0 0 13px;
}


.gp-footer-column a {
  color: #a7a8ad !important;

  font-size: 14px;
  line-height: 1.5;

  text-decoration: none !important;

  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}


.gp-footer-column a:hover {
  color: #ffffff !important;

  padding-left: 4px;
}


/* =========================================================
   SERVICIOS
   ========================================================= */

.gp-footer-services {
  min-width: 0;
}

.gp-footer-services li {
  margin-bottom: 13px;
}


/* =========================================================
   CONTACTO
   ========================================================= */

.gp-footer-contact {
  min-width: 0;
}


.gp-contact-item {
  display: flex;
  align-items: flex-start;

  gap: 13px;

  margin-bottom: 18px;
}


.gp-contact-icon {
  flex: 0 0 34px;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(23, 71, 255, 0.12);

  color: #4c70ff;

  font-size: 15px;
}


.gp-contact-item span {
  display: block;

  margin-bottom: 3px;

  color: #777a82;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}


.gp-contact-item p,
.gp-contact-item a {
  display: block;

  margin: 0;

  color: #ffffff !important;

  font-size: 14px;

  line-height: 1.5;

  text-decoration: none !important;
}


.gp-contact-item a:hover {
  color: #4c70ff !important;
}


/* =========================================================
   REDES SOCIALES
   ========================================================= */

.gp-social {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 25px;
}


.gp-social a {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f3f4f7;

  color: #15161a !important;

  text-decoration: none !important;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}


.gp-social a:hover {
  background: #1747ff;

  color: #ffffff !important;

  transform: translateY(-3px);
}


.gp-social i {
  font-size: 15px;
}


/* =========================================================
   BARRA INFERIOR
   ========================================================= */

.gp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.gp-footer-bottom-container {
  width: min(1200px, calc(100% - 80px));

  min-height: 70px;

  margin: 0 auto;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


.gp-footer-bottom p {
  margin: 0;

  color: #777a82;

  font-size: 12px;
}


.gp-footer-legal {
  display: flex;
  align-items: center;

  gap: 15px;
}


.gp-footer-legal a {
  color: #777a82 !important;

  font-size: 12px;

  text-decoration: none !important;

  transition: color 0.25s ease;
}


.gp-footer-legal a:hover {
  color: #ffffff !important;
}


.gp-footer-legal span {
  width: 3px;
  height: 3px;

  border-radius: 50%;

  background: #55575d;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .gp-footer-container {

    grid-template-columns:
      1.4fr
      1fr
      1fr;

    gap: 45px;
  }

  .gp-footer-brand {
    grid-row: span 2;
  }

  .gp-footer-contact {
    grid-column: 2 / -1;
  }

}


/* =========================================================
   TABLET PEQUEÑA
   ========================================================= */

@media (max-width: 768px) {

  .gp-footer-main {
    padding: 55px 0 45px;
  }

  .gp-footer-container {

    width: min(100% - 40px, 560px);

    grid-template-columns: 1fr 1fr;

    gap: 40px 30px;
  }

  .gp-footer-brand {
    grid-column: 1 / -1;

    padding-right: 0;
  }

  .gp-footer-description {
    max-width: 500px;
  }

  .gp-footer-contact {
    grid-column: 1 / -1;
  }

  .gp-footer-bottom-container {
    width: min(100% - 40px, 560px);

    padding: 20px 0;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
  }

}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 480px) {

  .gp-footer-container {

    width: calc(100% - 36px);

    grid-template-columns: 1fr;

    gap: 35px;
  }

  .gp-footer-brand,
  .gp-footer-contact {
    grid-column: auto;
  }

  .gp-footer-logo img {
    width: 140px;
  }

  .gp-footer-description {
    font-size: 13px;
  }

  .gp-footer-column h5,
  .gp-footer-contact h5 {
    margin-bottom: 18px;
  }

  .gp-footer-legal {
    flex-wrap: wrap;
  }

}