.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;
}

.numeros {
  min-height: auto;
  height: auto;
  position: relative;
  padding: 80px 0;
}
.numeros::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(33, 106, 147, 0.7) 0%, rgba(10, 32, 45, 0.7) 100%);
}
.numeros picture {
  position: absolute;
  inset: 0;
}
.numeros picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.numeros .contenedor {
  position: relative;
  z-index: 1;
}
.numeros .contenedor .numeros__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .numeros .contenedor .numeros__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 0;
    padding: 0 20px;
  }
}
@media (max-width: 782px) {
  .numeros .contenedor .numeros__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.numeros .contenedor .numeros__grid .numeros__item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 30px;
  border-right: 1px solid #fff;
  min-width: 0;
  position: relative;
}
@media (max-width: 1024px) {
  .numeros .contenedor .numeros__grid .numeros__item::before {
    content: "";
    position: absolute;
    top: calc(100% + 30px);
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 1px;
    background: #fff;
    z-index: 1;
  }
  .numeros .contenedor .numeros__grid .numeros__item:last-child::before {
    display: none;
  }
}
.numeros .contenedor .numeros__grid .numeros__item:first-child {
  padding-left: 0;
}
.numeros .contenedor .numeros__grid .numeros__item:last-child {
  padding-right: 0;
  border-right: none;
}
@media (max-width: 1024px) {
  .numeros .contenedor .numeros__grid .numeros__item:nth-child(2n) {
    border-right: none;
    padding-right: 0;
  }
  .numeros .contenedor .numeros__grid .numeros__item:nth-child(2n+1) {
    padding-left: 0;
  }
}
@media (max-width: 782px) {
  .numeros .contenedor .numeros__grid .numeros__item {
    padding: 0;
    border-right: none;
  }
}
.numeros .contenedor .numeros__grid .numeros__item .numeros__icono {
  max-width: 65px;
  max-height: 65px;
  height: 100%;
  width: 100%;
  aspect-ratio: 1/1;
}
.numeros .contenedor .numeros__grid .numeros__item .numeros__icono img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.numeros .contenedor .numeros__grid .numeros__item .numeros__contenido {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.numeros .contenedor .numeros__grid .numeros__item .numeros__contenido .numeros__numero .numeros__simbolo,
.numeros .contenedor .numeros__grid .numeros__item .numeros__contenido .numeros__numero .numeros__valor,
.numeros .contenedor .numeros__grid .numeros__item .numeros__contenido .numeros__numero .numeros__simbolo-opcional {
  font-size: 40px;
  font-weight: bold;
  line-height: 45px;
  color: #40f99b;
}
.numeros .contenedor .numeros__grid .numeros__item .numeros__contenido .numeros__titulo {
  font-size: 16px;
  font-weight: bold;
  line-height: 21px;
  color: #fff;
}/*# sourceMappingURL=index.css.map */