.btn-blue {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #216a93;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-blue:hover {
  background-color: #1a73e9;
}

.btn-verde {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #40f99b;
  transition: all 0.3s ease;
}
.btn-verde:hover {
  background-color: #b9fddb;
}

.btn-blanco {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #fff;
  transition: all 0.3s ease;
}
.btn-blanco:hover {
  background-color: #e6eaed;
}

.proyectos {
  min-height: auto;
  height: auto;
  padding: 100px 0;
}
.proyectos .contenedor {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.proyectos .contenedor .title {
  color: #216a93;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  line-height: 30px;
  max-width: 729px;
  margin: 0 auto 50px;
}
.proyectos .contenedor .proyectos-filters {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
.proyectos .contenedor .proyectos-filters__track {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 20px;
  border: 1px solid rgba(37, 42, 54, 0.1);
  background: rgba(37, 42, 54, 0.1);
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  touch-action: none;
}
.proyectos .contenedor .proyectos-filters__track::-webkit-scrollbar {
  display: none;
}
.proyectos .contenedor .proyectos-filters__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.proyectos .contenedor .proyectos-filters__sep {
  width: 1px;
  height: 30px;
  flex-shrink: 0;
  background: #1a73e9;
  opacity: 0.2;
}
.proyectos .contenedor .proyectos-filters__tab {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 10px 30px;
  border: none;
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  color: #252a36;
  font-family: "Manrope", sans-serif;
  transition: background 0.25s ease, color 0.25s ease;
}
.proyectos .contenedor .proyectos-filters__tab img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.proyectos .contenedor .proyectos-filters__tab span {
  max-width: 220px;
  width: -moz-max-content;
  width: max-content;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-box-pack: center;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 42px;
  display: flex;
  align-items: center;
}
.proyectos .contenedor .proyectos-filters__tab.is-active {
  background: #216a93;
  color: #fff;
}
.proyectos .contenedor .proyectos-filters__tab.is-active span {
  font-weight: 400;
  color: #fff;
  text-shadow: 0.35px 0 0 currentColor, -0.35px 0 0 currentColor, 0 0.35px 0 currentColor, 0 -0.35px 0 currentColor;
}
.proyectos .contenedor .proyectos-filters__tab.is-active img {
  filter: brightness(0) invert(1);
}
.proyectos .contenedor .proyectos-filters__tab:not(.is-active):hover {
  background: rgba(33, 106, 147, 0.08);
}
.proyectos .contenedor .proyectos-filters__indicator {
  width: min(950px, 100%);
  height: 3px;
  border-radius: 20px;
  background: rgba(26, 115, 233, 0.2);
  overflow: hidden;
  position: relative;
}
.proyectos .contenedor .proyectos-filters__indicator span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 20px;
  background: #216a93;
  transition: transform 0.3s ease, width 0.3s ease;
}
.proyectos .contenedor .proyectos__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .proyectos .contenedor .proyectos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 782px) {
  .proyectos .contenedor .proyectos__grid {
    grid-template-columns: 1fr;
  }
}
.proyectos .contenedor .proyectos__more[hidden], .proyectos .contenedor .proyectos__more.is-hidden {
  display: none !important;
}/*# sourceMappingURL=index.css.map */