/* Benefits Carousel - CSS centralizado */

/* Title */
.benefits-title {
    text-align: center;
}

/* Base */
.benefits-swiper .swiper-wrapper {
    align-items: stretch;
}

.benefits-swiper .swiper-slide {
    height: auto !important;
    display: flex;
}

/* Benefit Card */
.benefit-card {
    background: #fff;
    color: #000;
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.benefit-card .benefit-icon {
    font-size: 28px;
    line-height: 1;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.benefit-card .benefit-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.benefit-card .card-text,
.benefit-card .benefit-text {
    flex-grow: 1;
}

/* Desktop: flexbox puro, sem Swiper */
@media (min-width: 768px) {
    .benefits-swiper .swiper-wrapper {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 12px;
        transform: none !important;
    }

    .benefits-swiper .swiper-slide {
        flex: 1;
        display: flex;
    }

    .benefits-swiper .swiper-benefits-pagination {
        display: none;
    }
}

/* Mobile: swiper ativo */
@media (max-width: 767px) {
    .benefits-swiper .swiper-slide {
        display: flex;
    }

    .benefit-card {
        width: 100%;
        max-width: none;
        padding: 25px 60px;
    }
}
