html,
body {
  font-family: "Red Hat Text", sans-serif;
  font-weight: 400;
  margin: 0;
  background: #E4F0F6;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.navbar {
  z-index: 10;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.container {
  flex-grow: 1;
}

footer{
  background-color: #fff;
}

footer .footer-logo{
  max-width: 280px!important;
}

.footer-logo-descuentate{
  max-width: 280px!important;
}

.sectores {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.error {
  color: red!important;
  font-size: 14px;
  margin-top: 5px;
  padding-left: 10px;
}

.sectores li {
  width: 33.33%; /* 3 columnas por defecto */
  /* box-sizing: border-box; */
  /* padding: 8px; */
  /* background: #f2f2f2; */
  /* border-radius: 4px; */
  margin-bottom: 10px;
}

.form-check-input{
  width: 16px!important;
  height: 16px!important;
  padding: 0!important;

}

@media (max-width: 768px) {
  .sectores li {
    width: 50%; /* 2 columnas */
  }
}

@media screen and (max-width: 578px) {

  footer .footer-logo{
    max-width: 200px!important;
  }

  .sectores li {
    width: 100%; /* 1 columna */
  }

}