.benefit{
    width: 100%;
    height: 50rem;
    background-color: var(--secondary-color);
    color: var(--main-color);
    box-sizing: border-box;
}

.benefitTitle{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    font-size: clamp(1.1rem, 1.8vw + 0.7rem, 2rem);
    font-family: 'light';
    text-align: center;
    box-sizing: border-box;
}

strong{
    font-family: 'Strong';
}

.benefitContent{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap; /* FIX: permite acomodo natural en pantallas intermedias */
    justify-content: center;
    align-items: center;
}

.benefitContentIMG{
    width: 40%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.benefitContentText{
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'light';
    font-size: 1rem;
    flex-direction: column;
    gap: clamp(1.25rem, 2vw + 0.5rem, 3rem);
    padding: 2rem 4rem;
    min-width: 0; /* FIX: evita que el texto empuje el layout */
    box-sizing: border-box;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.bullet-icon {
    width: clamp(1.75rem, 2vw + 1rem, 3rem);
    height: clamp(1.75rem, 2vw + 1rem, 3rem);
    object-fit: contain;
    flex-shrink: 0;
}

.bullet-text {
    font-size: clamp(0.85rem, 0.6vw + 0.75rem, 1.5rem);
    line-height: 1.25;
    margin: 0;
}

/* Imagen/SVG dentro de benefitContentIMG */
.benefitContentIMG img,
.benefitContentIMG object,
.benefitContentIMG svg {
    display: block;
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    min-width: 0;
}

/* --- RESPONSIVE --- */

/* Laptops pequeñas / tablets grandes */
@media (max-width: 1024px) {
    .benefit {
        height: auto;
        padding-bottom: 2rem;
    }

    .benefitContentIMG {
        width: 45%;
        padding: 1.5rem;
    }

    .benefitContentText {
        width: 55%;
        padding: 2rem 2.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .benefit {
        height: auto;
    }

    .benefitTitle {
        padding: 1.5rem 1rem;
    }

    .benefitContent {
        flex-direction: column;
    }

    .benefitContentIMG {
        width: 80%;
        padding: 1rem;
        order: 2; /* imagen queda al final visualmente en columna */
    }

    .benefitContentText {
        width: 100%;
        padding: 1.5rem;
        order: 1;
    }
}

/* Celulares medianos */
@media (max-width: 480px) {
    .benefitTitle {
        padding: 1.25rem 0.75rem;
    }

    .benefitContentIMG {
        width: 90%;
        padding: 1rem;
    }

    .benefitContentText {
        padding: 1rem;
    }

    .bullet-item {
        gap: 0.75rem;
        align-items: flex-start; /* FIX: si el texto pasa a 2 líneas, no se ve raro con el icono centrado */
    }

    .bullet-icon {
        margin-top: 0.15rem;
    }
}

/* Celulares muy pequeños */
@media (max-width: 360px) {
    .benefitContentIMG {
        width: 95%;
    }

    .bullet-item {
        gap: 0.6rem;
    }
}

/* Móviles en horizontal (landscape) - muy propenso a romperse */
@media (max-height: 500px) and (orientation: landscape) {
    .benefit {
        height: auto;
        padding: 1rem 0;
    }

    .benefitContent {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefitContentIMG,
    .benefitContentText {
        width: 100%;
        order: initial;
    }
}