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

.resumen-proyecto {
  min-height: auto;
  height: auto;
  padding: 50px 0 100px 0;
}
.resumen-proyecto .contenedor {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 1024px) {
  .resumen-proyecto .contenedor {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.resumen-proyecto__ficha {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
  border-radius: 20px;
  background: #216a93;
  color: #fff;
  min-height: 100%;
}
.resumen-proyecto__ficha-titulo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}
.resumen-proyecto__ficha-titulo span {
  color: #40f99b;
  font-size: 18px;
  font-weight: bold;
  line-height: 23px;
}
.resumen-proyecto__ficha-titulo img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.resumen-proyecto__datos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.resumen-proyecto__dato {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;
}
.resumen-proyecto__dato:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.resumen-proyecto__dato-label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.resumen-proyecto__dato-label img {
  width: 19px;
  height: 19px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.resumen-proyecto__dato-label span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  text-transform: uppercase;
}
.resumen-proyecto__dato-valor {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  word-break: break-word;
}
.resumen-proyecto__cliente {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}
.resumen-proyecto__logo {
  width: 130px;
  height: 68px;
  padding: 6px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.resumen-proyecto__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.resumen-proyecto__contenido {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}
.resumen-proyecto__titulo {
  margin: 0;
  color: #216a93;
  font-size: 25px;
  font-weight: 800;
  line-height: 30px;
}
.resumen-proyecto__parrafo {
  margin: 0;
  color: #252a36;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}
.resumen-proyecto__parrafo p {
  margin: 0 0 0.75em;
}
.resumen-proyecto__parrafo p:last-child {
  margin-bottom: 0;
}
.resumen-proyecto__media {
  width: 100%;
  max-height: 380px;
  border-radius: 20px;
  overflow: hidden;
}
.resumen-proyecto__media img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}/*# sourceMappingURL=index.css.map */