.why-participate {
    padding: 80px 20px;
    background: #ffffff !important;
    overflow-x: hidden;
}

.why-participate__title {
    width: 1440px;
    height: 61px;
    flex-shrink: 0;
    color: rgba(0, 64, 113, 0.89);
    text-align: center;
    font-family: "Bosch Sans";
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin: 0 auto 30px auto;
    max-width: 100%;
}

.why-participate__benefits {
    display: grid;
    gap: 20px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background: #ffffff !important;
    box-sizing: border-box;
}

/* 4 cards: Always 4x1 or 2x2, NEVER 3+1 */
.why-participate__benefits[data-count="4"] {
    grid-template-columns: repeat(4, 305px);
    max-width: 1280px;
}

/* Default 2x2 */
.why-participate__benefits:not([data-count]) {
    grid-template-columns: repeat(2, 305px);
    max-width: 650px;
}

/* Force 2x2 when 4 cards won't fit in one line */
@media (max-width: 1320px) and (min-width: 769px) {
    .why-participate__benefits[data-count="4"] {
        grid-template-columns: repeat(2, 305px) !important;
        max-width: 650px;
    }
}

/* Desktop: Layout de grid tradicional */
@media (min-width: 769px) {
    .benefits-slider {
        display: contents;
    }

    .benefits-slider__track {
        display: contents;
    }

    .benefit-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        opacity: 1;
        visibility: visible;
        position: relative;
    }

    .benefits-slider__dots {
        display: none;
    }
}

/* Mobile: Layout de slider */
@media (max-width: 768px) {
    .why-participate__benefits {
        display: block;
    }

    .benefits-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
        touch-action: pan-y pinch-zoom;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        cursor: grab;
    }
    
    .benefits-slider:active {
        cursor: grabbing;
    }

    .benefits-slider__track {
        display: flex;
        transition: transform 0.5s ease;
        width: 100%;
    }

    .benefit-slide {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .benefit-slide--active {
        opacity: 1;
        visibility: visible;
        position: relative;
    }

    .benefits-slider__dots {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 40px;
    }
}

.benefit-icon {
    width: 136px;
    height: 136px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.benefit-icon img {
    width: 136px;
    height: 136px;
    object-fit: contain;
}

.benefit-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 64, 113, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

/* Mobile overrides for bullet size - REMOVE SCALING */
@media screen and (max-width: 768px) {
    .benefits-slider__dots .benefit-bullet,
    .benefit-bullet.benefit-bullet {
        width: 8px !important;
        height: 8px !important;
        transform: none !important;
    }

    .benefit-bullet--active.benefit-bullet--active {
        width: 10px !important;
        height: 10px !important;
        transform: none !important;
    }

    .benefit-bullet:hover {
        transform: none !important;
    }

    .benefit-bullet--active:hover {
        transform: none !important;
    }
}

.benefit-bullet:hover {
    background: rgba(0, 64, 113, 0.6);
    transform: scale(1.1);
}

.benefit-bullet--active {
    background: rgba(0, 64, 113, 0.89);
    transform: scale(1.2);
}

.benefit-card {
    width: 305px;
    height: 180px;
    background: rgba(217, 217, 217, 0.49);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    padding: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.benefit-card:hover,
.benefit-card:focus {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 77, 107, 0.3);
}

.benefit-card:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.benefit-card--highlighted {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 77, 107, 0.4);
    border: 2px solid var(--primary-blue);
}

.benefit-card__title {
    width: 100%;
    color: #000;
    font-family: "Bosch Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
    text-align: center;
}

.benefit-card__description {
    width: 269px;
    color: #000;
    font-family: "Bosch Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
    text-align: center;
    max-width: 100%;
}


@media (max-width: 768px) {
    .why-participate {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }

    .why-participate__title {
        width: 100%;
        height: auto;
        font-size: 36px;
        margin-bottom: 40px;
        font-weight: 900;
    }

    .benefit-slide {
        gap: 20px;
        padding: 0 20px;
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
    }

    .benefit-icon img {
        width: 80px;
        height: 80px;
    }

    .benefit-card {
        width: 100%;
        height: auto;
        min-height: 110px;
        max-width: 305px;
        margin: 0 auto;
        padding: 15px;
    }

    .benefit-card__title {
        width: 100%;
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .benefit-card__description {
        width: 100%;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.3;
    }

    .benefits-slider__dots {
        margin-top: 30px;
        gap: 10px;
    }

}

@media (max-width: 480px) {
    .why-participate {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }
    
    .why-participate__title {
        width: 100%;
        height: auto;
        font-size: 28px;
        font-weight: 900;
    }
    
    .benefit-slide {
        gap: 15px;
        padding: 0 15px;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .benefit-card__title {
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 8px;
    }
    
    .benefit-card__description {
        width: 100%;
        font-size: 11px;
        font-weight: 400;
        line-height: 1.3;
    }
    
    .benefits-slider__dots {
        margin-top: 25px;
        gap: 8px;
    }

}

/* EXTREME OVERRIDE - Mobile bullets complete reset */
@media screen and (max-width: 768px) {
    .benefit-bullet {
        all: unset !important;
        display: inline-block !important;
        width: 3px !important;
        height: 3px !important;
        background: rgba(0, 64, 113, 0.3) !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
    }

    .benefit-bullet--active {
        width: 5px !important;
        height: 5px !important;
        background: rgba(0, 64, 113, 0.89) !important;
    }
}