.ibc-wrapper { max-width: 860px; margin: 0 auto; padding: 20px 0; font-family: 'Segoe UI', sans-serif; }

.ibc-show-header { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.ibc-show-header img { width: 100px; height: 100px; border-radius: 8px; object-fit: cover; }
.ibc-show-header h2 { color: #f5a623; margin: 0 0 6px; }
.ibc-show-header p  { color: #888; font-size: 0.9rem; margin: 0; }

.ibc-lista { display: flex; flex-direction: column; gap: 20px; }

.ibc-card {
    display: flex;
    background: #1a2f5a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s;
}
.ibc-card:hover { transform: translateY(-3px); }

.ibc-img { width: 200px; min-width: 200px; }
.ibc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ibc-info { padding: 20px 24px; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.ibc-titulo { color: #f5a623; font-size: 1.1rem; font-weight: bold; }
.ibc-meta   { color: #7a8ab5; font-size: 0.8rem; }
.ibc-desc   {
    color: #bbc; font-size: 0.88rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ibc-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 9px 20px;
    background: #f5a623;
    color: #fff !important;
    font-weight: bold;
    font-size: 0.82rem;
    border-radius: 4px;
    text-decoration: none;
    width: fit-content;
}
.ibc-btn:hover { background: #d4891a; }

.ibc-btn-more {
    display: block;
    margin: 28px auto 0;
    padding: 12px 36px;
    background: transparent;
    border: 2px solid #f5a623;
    color: #f5a623;
    font-size: 0.95rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 1px;
}
.ibc-btn-more:hover { background: #f5a623; color: #fff; }
.ibc-btn-more:disabled { opacity: 0.4; cursor: not-allowed; }

.ibc-loading { text-align: center; color: #f5a623; margin-top: 12px; }




@media (max-width: 600px) {
    .ibc-card { flex-direction: column; }
    .ibc-img  { width: 100%; height: 400px; }
}

/* ===== MODAL ===== */
.ibc-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ibc-modal-box {
    background: #1a2f5a;
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 560px;
    position: relative;
}

.ibc-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: transparent;
    border: none;
    color: #f5a623;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
}

.ibc-modal-close:hover { color: #fff; }