/* Preview-only Focus clinico layer for the real UniversoVet homepage. */
.hero-clinic__focus-ring {
    position: absolute;
    z-index: 7;
    left: 50%;
    top: 41%;
    width: 92px;
    height: 92px;
    margin: -46px 0 0 -46px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(59, 199, 191, 0.08), 0 0 18px rgba(59, 199, 191, 0.12);
    opacity: 0;
    pointer-events: none;
}

/* Preview-only: smoother, less mechanical service-card hover. */
.services .service-card {
    transition:
        transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 480ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 420ms ease;
}

.services .service-card__icon {
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center center;
}

@media (hover: hover) and (pointer: fine) {
    .services .service-card:hover {
        transform: translateY(-2px) scale(1.003);
        box-shadow: 0 18px 38px rgba(38, 65, 74, 0.085);
        border-color: rgba(107, 53, 216, 0.14);
    }

    .services .service-card:hover .service-card__icon {
        transform: translateY(-1px) scale(1.02);
    }
}

@media (max-width: 760px) {
    .hero-clinic__focus-ring {
        width: 74px;
        height: 74px;
        margin: -37px 0 0 -37px;
    }
}

/*
 * Motion-evaluation preview only:
 * do not disable these hover transitions when the OS requests reduced motion,
 * otherwise Rafa cannot evaluate the intended easing. Production must restore
 * an accessibility-specific reduced-motion treatment.
 */
