.footerindex {
  color: white;
  padding: 10px 0;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}

footer {
  background-color: rgba(0, 93, 81, 0.45) !important;
  color: white;
  padding: 10px 0;
  text-align: center;
  width: 100%;
  height: fit-content;
  z-index: 10;
}

footer .footer-content p {
  font-size: 1rem;
}

footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-right: 20px;
}

footer .social-icons a {
  text-decoration: none;
}

footer .social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

footer .social-icons img:hover {
  transform: scale(1.1);
}

.fila-footer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.con-margen {
  padding-left: 20px;
  border-left: 1px solid black;
}

.footer-texto {
  margin: 0;
  vertical-align: bottom;
  height: fit-content !important;
}

footer #footer-main {
  display: flex;
  flex-direction: row;
  align-items: center;
}

footer #footer-extras {
  height: fit-content;
  display: flex;
  flex-direction: row;
}

#footer-extras a {
  text-decoration: none !important;
  color: white !important;
  padding-right: 20px;
}

footer hr {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  margin-top: 10px;
  top: 100vh !important;
}

@media (max-width: 810px) {
  footer .footer-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer #footer-extras{
    display: none;
  }
}