:root {
  --background-llamada-mobile: #0f0f0f;
  --background-blanco: #FFFFFF;
  --background-ceniza-claro: #F7F4F4;
  --background-ceniza-medio: #D9D9D9;
  --border-cabecera-mobile: #ff7396;
  --button-call: #ff3366;
  --fuente-ceniza-claro: #666666;
  --fuente-ceniza-oscuro: #4F4C4C;
  --planes-card-start:  #ff809f;
  --planes-card-ultra: #9875ff;
  --planes-card-mega: #ff75ba;
  --fuente-enlace: #7598ff;
  --background-footer: #0f0f0f;
  --ubuntu:'Ubuntu', sans-serif;
  --roboto:'Roboto', sans-serif;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--background-footer);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer__social {
  display: flex;
}

.footer__midia {
  display: block;
  width: 50px;
  height: 50px;
  margin: 2rem 1rem;
}

.footer__navegacion {
  color: var(--background-blanco);
  text-align: center;
  line-height: 1;
}


.footer__enlace {
  display: inline-block;
  margin: 0 .5rem .7rem;
  color: var(--background-blanco);
}

.footer__icon {
  font-size: 40px;
  color: var(--border-cabecera-mobile);
}

.footer__logo {
  max-width: 350px;
}

@media screen and (min-width: 1024px) {
  .footer {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  .footer__navegacion {
      text-align: left;
      min-width: 600px;
  }
}