/*** Footer ***/
.footer-logo {
  width: 300px;
  height: auto;
}

.footer-misc-icon {
  width: 50px;
  padding: 5px;
  height: auto;
  background-color: white;
  border-radius: 2px;
  margin-inline: 5px;
}

.iconcircle {
  border-radius: 50%;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-color: var(--primario);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

.iconcircle:hover {
  background-color: var(--primario);
  color: var(--dark);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

.footer-politicas {
  text-align: center;
}

.footer-politicas a {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-sm-center {
    text-align: center;
  }

  .footer-sm-center a {
    text-align: center;
  }

  .footer-politicas a {
    margin-right: 10px;
    margin-bottom: 5px;
    /* Espacio entre enlaces */
  }
}
