:root {
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    font-family: var(--font-body);
}

body {
    font-family: var(--font-body);
    margin: 0;
}

* {
    box-sizing: border-box;
}

/* ═══════════════════════════════════════
   ESPECIALIDADES SLIDESHOW
   ═══════════════════════════════════════ */
.esp-full-media {
    position: relative;
    aspect-ratio: 16 / 10;
    width: 100%;
    overflow: hidden;
    background: var(--gray-100);
}

.esp-full-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.esp-full-slideshow .esp-full-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.2s var(--ease-out), transform 6s var(--ease-out);
}

.esp-full-slideshow .esp-full-slide.active {
    opacity: 1;
    transform: scale(1.06);
}

.esp-full-slideshow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 14, 26, 0.25) 0%, rgba(6, 14, 26, 0.02) 60%);
    z-index: 1;
    pointer-events: none;
}

