﻿/* Botón fijo INEI */
.inei-support-launcher {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99999;
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.inei-support-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

/* Modal selector de departamento */
.inei-dept-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99998;
}

    .inei-dept-modal.show {
        display: flex;
    }

.inei-dept-card {
    width: min(520px, 92vw);
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.inei-dept-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}

.inei-dept-sub {
    font-size: 13px;
    opacity: .8;
    margin-bottom: 14px;
}

.inei-dept-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.inei-dept-btn {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    background: #fff;
    cursor: pointer;
    text-align: left;
    font-weight: 700;
}

    .inei-dept-btn:hover {
        background: #f3f4f6;
    }

.inei-dept-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.inei-dept-cancel {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
    opacity: .75;
}
