.carrusel-wrapper {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    max-width: 1100px;
    margin: 40px auto;
    gap: 10px;
}

/* Área central del carrusel */
.carrusel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
}

/* Ocultar scrollbar */
.carrusel-track::-webkit-scrollbar {
    display: none;
}
.carrusel-track {
    scrollbar-width: none;
}

/* Cards */
.card-servicio {
    min-width: 280px;
    background: #ffffff;
    padding: 24px;
    border-radius: 18px;
    border-left: 6px solid #7cb837;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    flex-shrink: 0;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

/* Efecto hover elegante */
.card-servicio:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

/* Botones */
.carrusel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #0a3554;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrusel-btn:hover {
    background: #06263f;
}

/* Evita que se superpongan */
.carrusel-btn.left {
    justify-self: start;
}

.carrusel-btn.right {
    justify-self: end;
}
@media (max-width: 768px) {
    .carrusel-wrapper {
        grid-template-columns: 40px 1fr 40px;
    }

    .card-servicio {
        min-width: 240px;
    }
}