.body-frame2-invBenef {
    font-family: Arial, sans-serif;
    font-size: 18px;
    background-color: white;
    color: black;
    margin: 40px;
}

/* ----- CONTENEDOR PRINCIPAL ----- */
.contenedor-frame2-invBenef {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* ----- COLUMNAS ----- */
.columna-frame2-invBenef {
    background-color: #ffffff;
    color: #361818;
    padding: 20px;
    width: 450px;
    text-align: justify;
    box-sizing: border-box;
}

.ul-frame2-invBenef {
    list-style: none;
    padding: 0;
}

.li-frame2-invBenef::before {
    content: "✔️ ";
    color: green;
}

/* ==========================================
   MEDIA QUERIES PARA RESPONSIVIDAD
   ========================================== */

/* 🟢 Para pantallas pequeñas (teléfonos en portrait) */
@media (max-width: 480px) and (orientation: portrait) {
    .body-frame2-invBenef {
        margin: 20px;
        font-size: 16px;
    }

    .contenedor-frame2-invBenef {
        flex-direction: column;
        align-items: center;
    }

    .columna-frame2-invBenef {
        width: 100%;
        padding: 15px;
    }
}

/* 🟠 Para pantallas pequeñas (teléfonos en landscape) */
@media (max-width: 480px) and (orientation: landscape) {
    .columna-frame2-invBenef {
        width: 100%;
        font-size: 15px;
    }
}

/* 🔵 Para tablets verticales (portrait) */
@media (max-width: 768px) and (orientation: portrait) {
    .contenedor-frame2-invBenef {
        flex-direction: column;
        align-items: center;
    }

    .columna-frame2-invBenef {
        width: 90%;
        font-size: 17px;
    }
}

/* 🟣 Para tablets horizontales (landscape) */
@media (max-width: 1024px) and (orientation: landscape) {
    .contenedor-frame2-invBenef {
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .columna-frame2-invBenef {
        width: 45%;
        font-size: 17px;
    }
}

/* 🟤 Para tablets verticales grandes (hasta 912 px) */
@media (max-width: 912px) {
    .contenedor-frame2-invBenef {
        flex-direction: column;
        align-items: center;
    }

    .columna-frame2-invBenef {
        width: 100%;
        font-size: 17px;
    }
}

/* ⚫ Para pantallas entre 1024px y 1440px */
@media (max-width: 1024px) and (orientation: portrait) {
    .contenedor-frame2-invBenef {
        flex-direction: column;
        align-items: center;
    }

    .columna-frame2-invBenef {
        width: 90%;
    }
}

/* 🔴 Para pantallas grandes (1440px o más) */
@media (min-width: 1440px) {
    .contenedor-frame2-invBenef {
        justify-content: center;
        gap: 60px;
    }

    .columna-frame2-invBenef {
        width: 600px;
        font-size: 19px;
    }
}
