.card-servicio {
    border-radius: 0;
    padding: 0;
    height: 300px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.card-servicio .card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-image {
    height: 150px;
}

.card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.card-servicio::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: 30px;
    height: 30px;
    border-top: 12px solid var(--light-blue);
    border-left: 12px solid var(--light-blue);
}

.card-text {
    text-align: center;
}

/* Para el enlace "Ver más" */
.card-content a {
    align-self: center;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    margin-top: auto;
    color: var(--light-blue);
    transition: 0.3s;
}

.card-content a:hover {
    color: var(--principal);
}


