/* ── Clientes Modal ── */
.site-modal--clientes {
    padding: 32px !important;
    background: #020d19 !important;
    border: none !important;
    border-radius: 14px !important;
    box-shadow: 0 36px 110px rgba(0, 0, 0, .60), 0 0 0 1px rgba(255, 255, 255, .10) !important;
    width: 100% !important;
    max-width: 950px !important;
    max-height: none !important;
    overflow: visible !important;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.site-modal--clientes .modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.site-modal--clientes .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}
.cli-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.cli-header-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}
.cli-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .03);
    flex: 0 0 auto;
}
.cli-icon svg { width: 24px; height: 24px; color: #fff; }
.cli-eyebrow { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.6); margin-bottom: 4px; display: block; }
.cli-title { margin: 0 0 8px; font-size: 24px; font-weight: 400; line-height: 1.3; }
@media (min-width: 768px) {
    .cli-title { white-space: nowrap; }
}
.cli-title span { color: #5E94FF; }
.cli-subtitle { margin: 0; font-size: 13px; color: rgba(255,255,255,.7); max-width: none; line-height: 1.4; }

.cli-header-right {
    display: flex;
    gap: 12px;
    width: 100%;
}
.cli-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 10px;
    flex: 1;
}
.cli-stat svg { width: 24px; height: 24px; color: rgba(255, 255, 255, .5); flex: 0 0 auto; }
.cli-stat div { display: flex; flex-direction: column; }
.cli-stat strong { font-size: 18px; font-weight: 600; color: #fff; line-height: 1.1; }
.cli-stat span { font-size: 11px; color: rgba(255, 255, 255, .6); margin-top: 2px; white-space: nowrap; }

.cli-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}
.cli-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: transparent;
    border: none;
    padding: 0;
    transition: all .2s;
}
.cli-logo:hover {
    transform: scale(1.05);
}
.cli-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all .3s;
}
.cli-logo:hover img {
    transform: scale(1.05);
}
.cli-text-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 60px;
    background: transparent;
    border: none;
    padding: 0;
}
.cli-text-card.wide { grid-column: span 2; }
.cli-text-card strong { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.cli-text-card span { font-size: 11px; color: rgba(255, 255, 255, .6); line-height: 1.3; }

.cli-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 12px;
    margin-top: auto;
    gap: 32px;
}
.cli-footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}
.cli-footer-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(94, 148, 255, 0.1);
    color: #5E94FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.cli-footer-icon svg { width: 24px; height: 24px; }
.cli-footer-left h3 { margin: 0 0 4px; font-size: 18px; font-weight: 700; color: #fff; }
.cli-footer-left h3 span { color: #5E94FF; }
.cli-footer-left p { margin: 0; font-size: 13px; color: rgba(255,255,255,.6); max-width: none; line-height: 1.4; }
.cli-footer-right {
    display: flex;
    flex-direction: row;
    gap: 12px;
}
.cli-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    padding: 0 24px;
    white-space: nowrap;
}
.cli-btn svg { width: 18px; height: 18px; }
.cli-btn-primary {
    background: #446eb9;
    color: #fff;
    border: none;
}
.cli-btn-primary:hover { background: #5E94FF; }
.cli-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
}
.cli-btn-outline:hover { background: rgba(255, 255, 255, .05); }

@media (max-width: 1024px) {
    .cli-header { flex-direction: column; }
    .cli-header-right { flex-wrap: wrap; }
    .cli-stat { flex: 1 1 calc(50% - 6px); }
    .cli-grid { grid-template-columns: repeat(4, 1fr); }
    .cli-text-card.wide { grid-column: span 1; }
    .cli-footer { flex-direction: column; align-items: stretch; text-align: center; }
    .cli-footer-left { flex-direction: column; text-align: center; }
    .cli-footer-right { flex: 1; flex-basis: auto; }
}
@media (max-width: 600px) {
    .site-modal--clientes {
        max-height: calc(100svh - 48px) !important;
        overflow-y: auto !important;
        padding: 24px !important;
    }
    .cli-title { font-size: 18px; white-space: normal; }
    .cli-grid { grid-template-columns: repeat(2, 1fr); }
    .cli-stat { flex: 1 1 calc(50% - 6px); padding: 12px; }
    .cli-stat strong { font-size: 16px; }
}
