/* Ocultar barra de scroll estándar pero mantener funcionalidad */
.hide-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* Contenedor del Slider */
#services-track {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Suavidad en iOS */
}

/* Botones de Navegación */
.slider-btn {
    background-color: white;
    color: #1a202c; /* Gray-900 */
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.slider-btn:hover {
    background-color: #00A9B4; /* Balimsa Cyan */
    color: white;
    transform: scale(1.1);
    border-color: #00A9B4;
}

.slider-btn:active {
    transform: scale(0.95);
}