/* FOOTER */

.footer {
  background-color: var(--color1);
  color: var(--color3);
  padding: 4rem 1.5rem 2rem;
  scroll-margin-top: 100px;
}

/* CONTENEDOR */

.contenedor-footer {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: center;
}

/* BLOQUES */

.footer-bloque img {
  max-width: 110px;
  margin: 0 auto;
}

.footer-bloque p {
  font-size: var(--fs-small);
  color: var(--color3);
  line-height: 1.5;
  margin-top: 1rem;
}

/* TITULOS */

.footer-bloque h4 {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  margin-bottom: 1rem;
}

/* CTA */

.btn-footer {
  display: inline-block;
  background-color: var(--color4);
  color: var(--color3);
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.btn-footer:hover {
  background-color: var(--color6);
}

.copy {
  margin-top: 1rem;
  font-size: var(--fs-small);
}

/* CONTACTO */

.contacto {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contacto a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--color3);
  font-size: var(--fs-body);
}

.contacto img {
  width: 18px;
}

/* FOOTER BOTTOM */

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  font-size: var(--fs-small);
}

.creditos a {
  color: var(--color3);
  font-weight: 600;
}

.creditos a:hover {
  text-decoration: underline;
}

/* TABLET */

@media (min-width: 768px) {

  .contenedor-footer {
    gap: 4rem;
  }

}

/* DESKTOP */

@media (min-width: 1024px) {

  .contenedor-footer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-bloque {
    flex: 1;
  }

  .footer-logo {
    align-items: flex-start;
  }

  .footer-logo img {
    margin: 0;
  }

  .footer-cta {
    text-align: center;
  }

  .footer-contacto {
    text-align: right;
  }

  .contacto {
    align-items: flex-end;
  }

  .contacto a {
    justify-content: flex-end;
  }

  /* FOOTER BOTTOM */

  .footer-bottom {
    flex-direction: column;
    gap: 0.3rem;
  }
}