

.lounge-categorias{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:24px;
    background:#EFEFEF;
    border-radius:18px;
    overflow:hidden;
}

/* HEADER */

.lounge-categorias-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
    gap:20px;
}

.lounge-categorias-header h2{
    margin:0;
    font-size:32px;
    font-weight:700;
    color:#111;
    line-height:1.1;
}

.lounge-categorias-header a{
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    color:#2563eb;
    transition:.25s ease;
}

.lounge-categorias-header a:hover{
    opacity:.7;
}

/* GRID */

.lounge-categorias-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

/* CARD */

.lounge-cat-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    text-decoration:none;
    transition:.28s ease;
    border:1px solid #e7e7e7;
    display:flex;
    flex-direction:column;
    min-height:240px;
}

.lounge-cat-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* IMAGE */

.lounge-cat-image{
    background:#F7F7F7;
    height:170px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px;
}

.lounge-cat-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.35s ease;
}

.lounge-cat-card:hover .lounge-cat-image img{
    transform:scale(1.04);
}

/* TITLE */

.lounge-cat-title{
    padding:18px 16px 20px;
    text-align:center;
    font-size:18px;
    font-weight:600;
    color:#111;
    line-height:1.35;
    flex-grow:1;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* TABLET */

@media(max-width:992px){

    .lounge-categorias-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .lounge-cat-card{
        min-height:220px;
    }

    .lounge-cat-image{
        height:150px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .lounge-categorias{
        padding:18px;
        border-radius:0;
    }

    .lounge-categorias-header{
        margin-bottom:18px;
    }

    .lounge-categorias-header h2{
        font-size:28px;
    }

    .lounge-categorias-header a{
        display:none;
    }

    .lounge-categorias-grid{
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

    .lounge-cat-card{
        border-radius:12px;
        min-height:180px;
    }

    .lounge-cat-image{
        height:110px;
        padding:12px;
    }

    .lounge-cat-title{
        font-size:14px;
        padding:14px 10px 16px;
    }

}

/* MOBILE PEQUEÑO */

@media(max-width:480px){

    .lounge-categorias-grid{
        gap:8px;
    }

    .lounge-cat-card{
        min-height:165px;
    }

    .lounge-cat-image{
        height:95px;
    }

    .lounge-cat-title{
        font-size:13px;
    }

}
