/* Cards de servicios como enlaces */
.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.service-link:hover {
    text-decoration: none;
    color: inherit;
}

/* CTA dentro de las cards */
.service-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 0.5rem;
    color: var(--medical-blue);
    font-weight: 600;
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.service-link:hover .service-cta {
    opacity: 1;
    transform: translateY(0);
}

.service-cta i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.service-link:hover .service-cta i {
    transform: translateX(5px);
}

/* Footer de servicios */
.services-footer {
    text-align: center;
    margin-top: 3rem;
}