.FlexContenedorIndusltrial{
        display: flex;
        justify-content: space-between;
        gap: 50px;
        align-items: flex-start;

    }


    .FlexContenedorIndustriales{
        width: 100%;
    }
    .ContenedorflexContenedores{
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 30px;
        padding: 40px 0px;
    }

    .FlexContenedorIndustriales h1{
        color: var(--ColorBtn);
        text-align: center;
        font-size: 50px;
        font-family: var( --font-orbitron);
    }
    .FlexContenedorIndustriales div{
      text-align: center;
        font-size: 20px;
        padding: 20px 0px;
        font-family: var(--font-roboto);
    }


    .Contenedor{
        width: 300px;
        border:2px solid  var(--bordeClaro);
        padding: 20px;
        text-align: center;
        position: relative;
        min-height: 200px;
        overflow: hidden;
    }
    .ContenedorImgIndustriales{
        width: 100%;
      overflow: hidden;
        padding: 20px 40px;
    }
    .ContenedorImgIndustriales img{
        width: 100%;
        object-fit: cover;
    }




/* Etiqueta amarilla tipo cinta */
.EtiquetaOferta {
            position: absolute;
            top: 20px;
            left: -35px;
            background: #FFE70B;
            color: #353334;
            font-weight: 700;
            font-size: 12px;
            padding: 6px 35px;
            transform: rotate(-45deg);
            transform-origin: center;
           text-transform: uppercase;
            z-index: 0;
            width: 120px;
            text-align: center;
            overflow: hidden;
            font-family: var(--font-roboto);
        }




    /* Caja general */
.categoria-box {
    width: 25%;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    font-family: Roboto;
    text-transform: uppercase;
}

/* Header */
.categoria-header {
    background: #0B63B3; /* azul */
    color: white;
    font-weight: 700;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;

}

.categoria-header i {
    display: none; /* Desktop no muestra ícono */
    transition: transform 0.3s ease;
}

/* Lista */
.categoria-list {
    display: block; /* visible en desktop */
    max-height: none;
}

.categoria-item {
    display: block;
    padding: 20px 14px;
    border-bottom: 1px solid #ececec;
    font-size: 14px;
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

.categoria-item:hover {
    background: #f3f3f3;
}

.categoria-item.active {
    background: #333;
    color: white;
}

/* ------------------------------ */
/*   RESPONSIVE MENOS DE 900PX    */
/* ------------------------------ */
@media (max-width: 900px) {

    .categoria-box {
        width: 100%; /* w100 */
    }

    .categoria-header i {
        display: block; /* mostrar ícono */
    }

    .categoria-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }

    .categoria-box.open .categoria-list {
        max-height: 500px; /* se despliega */
    }

    .categoria-box.open .categoria-header i {
        transform: rotate(180deg);
    }

    .FlexContenedorIndusltrial{
        flex-direction: column;
    }
    .FlexContenedorIndustriales{
        width: 100%;
    }
}

