﻿:root {
    --navy: #0b1f3a;
    --gold: #b08d57;
    --muted: #475569;
    --line: #e5e7eb;
    --card: #ffffff;
    --radius: 20px;
    --shadow: 0 14px 34px rgba(15,23,42,.10);
}

.cli-wrap {
    width: min(1140px, calc(100% - 36px));
    margin: 26px auto 50px;
}

.cli-head {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 22px rgba(15,23,42,.06);
    padding: 22px;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}

    .cli-head::before {
        content: "";
        position: absolute;
        right: -70px;
        top: -80px;
        width: 260px;
        height: 260px;
        background: radial-gradient(circle, rgba(176,141,87,.20), transparent 60%);
    }

    .cli-head h2 {
        margin: 0 0 8px;
        color: var(--navy);
        font-weight: 950;
        letter-spacing: -.3px;
        font-size: clamp(26px, 3.2vw, 36px);
    }

    .cli-head p {
        margin: 0;
        color: var(--muted);
        line-height: 1.75;
        max-width: 90ch;
    }

/* GRID */
.cli-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

/* ITEM */
.cli-item {
    background: var(--card);
    border: 1px solid rgba(229,231,235,.95);
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(15,23,42,.06);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-height: 110px;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    text-decoration: none;
}

    .cli-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 44px rgba(15,23,42,.12);
        border-color: rgba(11,31,58,.20);
    }

    .cli-item img {
        width: 100%;
        height: 90px;
        object-fit: contain; /* no deforma */
        display: block;
        filter: saturate(1.05);
    }

/* Footer call-to-action */
.cli-foot {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(15,23,42,.06);
}

    .cli-foot p {
        margin: 0;
        color: var(--muted);
        font-weight: 700;
    }

.cli-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 12px;
    border: 1px solid var(--navy);
    background: var(--navy);
    color: #fff;
    font-weight: 950;
    text-decoration: none;
}

    .cli-cta:hover {
        filter: brightness(1.06);
    }

/* Responsive */
@media (max-width: 1100px) {
    .cli-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 820px) {
    .cli-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 520px) {
    .cli-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cli-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .cli-cta {
        width: 100%;
    }
}
