/* ==========================================================================
   Estilos para el Catálogo Multi-paso (Igual que Valoración)
   ========================================================================== */

.inmo-catalog-wrapper {
    font-family: 'Outfit', sans-serif;
    max-width: 720px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(12px);
    color: #0f172a;
}

.cat-step-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    padding: 40px;
}

.cat-step-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Checkboxes Premium para el Paso 2 */
.inmo-checkbox-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.inmo-check-card {
    position: relative;
    cursor: pointer;
}

.inmo-check-card input {
    position: absolute;
    opacity: 0;
}

.inmo-check-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #64748b;
    transition: all 0.2s ease;
}

.inmo-check-card:hover span {
    border-color: #63b847;
}

.inmo-check-card input:checked + span {
    background: #63b847;
    border-color: #63b847;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(99, 184, 71, 0.2);
}

.inmo-catalog-status {
    text-align: center;
    padding: 0 40px 20px 40px;
    font-size: 14px;
    font-weight: 500;
}
