/* FOOTER */
.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 266px;
  background-color: #32375f;
}

.footer_secciones {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 90%;
  height: 222px;
}

.footer_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  height: 100%;
}

.footer_logo img {
  width: 240px;
  height: 50px;
}

.footer_informacion {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 50%;
  height: 100%;
}

.footer_informacion_contenedor {
  display: flex;
  flex-direction: column;
  width: 430px;
  gap: 20px;
}

.footer_informacion p {
  font-family: arial;
  font-size: 14px;
  color: #e6e6e6;
}

.footer_redes {
  width: 25%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_redes_contenedor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.footer_redes a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 16px;
}

.footer_redes a img {
  width: 20px;
}

.footer_redes a span {
  font-family: Arial;
  font-size: 20px;
  color: #e6e6e6;
}

.footer_copyright {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 44px;
  border-top: 3px solid #47aad4;
}

.footer_copyright p {
  text-align: center;
  font-family: Arial;
  font-size: 14px;
  color: #e6e6e6;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .footer_secciones {
    justify-content: space-around;
    width: 100%;
  }
  .footer_informacion {
    width: 40%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer_secciones {
    width: 100%;
    display: grid;
    row-gap: 10px;
    column-gap: 20px;
    grid-template-areas:
      "logo texto"
      "social texto";
    justify-items: center;
    align-items: center;
  }
  .footer_logo {
    width: 100%;
    grid-area: logo;
  }
  .footer_informacion {
    width: 80%;
    grid-area: texto;
  }
  .footer_redes {
    width: 100%;
    grid-area: social;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .footer {
    height: max-content;
    width: 100vw;
  }
  .footer_secciones {
    width: 100%;
    height: max-content;
    display: grid;
    row-gap: 10px;
    column-gap: 0px;
    display: flex;
    flex-direction: column;
  }
  .footer_logo {
    padding: 20px;
    width: max-content;
    display: flex;
    justify-content: flex-start;
    grid-area: logo;
  }
  .footer_logo img {
    width: auto;
    height: 100%;
  }
  .footer_informacion {
    width: 100%;
    padding: 0px 20px;
    grid-area: texto;
  }
  .footer_informacion p {
    font-family: arial;
    font-size: 12px;
  }
  .footer_informacion_contenedor {
    width: auto;
  }
  .footer_redes {
    width: 100%;
    grid-area: social;
    justify-content: flex-start;
    padding: 20px;
  }
  .footer_redes a {
    gap: 5px;
  }
  .footer_redes a span {
    font-size: 10px;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .footer {
    height: max-content;
    width: 100vw;
  }
  .footer_secciones {
    width: 100%;
    height: max-content;
    display: grid;
    row-gap: 10px;
    column-gap: 0px;
    display: flex;
    flex-direction: column;
  }
  .footer_logo {
    padding: 20px;
    width: max-content;
    display: flex;
    justify-content: flex-start;
    grid-area: logo;
  }
  .footer_logo img {
    width: auto;
    height: 100%;
  }
  .footer_informacion {
    width: 100%;
    padding: 0px 20px;
    grid-area: texto;
  }
  .footer_informacion p {
    font-family: arial;
    font-size: 12px;
  }
  .footer_informacion_contenedor {
    width: auto;
  }
  .footer_redes {
    width: 100%;
    grid-area: social;
    justify-content: flex-start;
    padding: 20px;
  }
  .footer_redes a {
    gap: 5px;
  }
  .footer_redes a span {
    font-size: 10px;
  }
}

