.espaciador {
    height: 60px;
}

.titilos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 100px 60px;
}

.titulot {
    width: 50%;
    display: flex;
}

.padreservicos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 100px 60px;
    background-color: #203670;
    color: white;
}
.tarjetasservicios {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
width: 100%;
gap: 20px   ;
}
.tarjeta{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 350px;
    gap: 10px;
    flex-wrap: wrap;
    background: white;
    border-radius: 10px;
    padding: 30px;
    color: black;

}
.tarjeta img{
    width: 100%;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.check-icon {
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  font-size: 12px;
}

.check-item p {
  margin: 0;
  line-height: 1.5;
}
.boton-lo-quiero {
  background-color: #203670;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 40px;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
}

.boton-lo-quiero:hover {
  background-color: #2c4a94;
  transform: translateY(-1px);
}

.boton-lo-quiero:active {
  transform: translateY(0);
}
@media (max-width: 767px) {
    .titulot {
    width: 100%;
    display: flex;
}
}
