/* Escala 1-10 */
#ccb-cotizador-root .ccb-escala { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
#ccb-cotizador-root .ccb-escala-btn { width: 44px; height: 44px; border-radius: var(--radius-md); border: 1.5px solid var(--ccb-borde); background: #fff; font-weight: 700; cursor: pointer; transition: all .15s; }
#ccb-cotizador-root .ccb-escala-btn.seleccionada { background: var(--ccb-primario); border-color: var(--ccb-primario); color: #fff; }

/* Checkbox de compromiso */
#ccb-cotizador-root .ccb-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
#ccb-cotizador-root .ccb-checkbox input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--ccb-primario); }
#ccb-cotizador-root .ccb-checkbox label { font-size: 14px; line-height: 1.6; color: var(--ccb-texto-secundario); font-family: inherit; }

/* Botón principal */
#ccb-cotizador-root .ccb-btn-siguiente {
	width: 100% !important; padding: 16px !important; background: var(--ccb-primario) !important; color: #fff !important;
	border: none !important; border-radius: var(--radius-md) !important; font-size: 16px !important; font-weight: 700 !important;
	cursor: pointer !important; transition: opacity .15s, transform .1s; box-shadow: 1px 8px 30px rgba(0, 0, 0, .03), 1px 4px 10px rgba(0, 0, 0, .05);
}
#ccb-cotizador-root .ccb-btn-siguiente:hover { opacity: .92; transform: translateY(-1px); }
#ccb-cotizador-root .ccb-btn-siguiente:disabled { opacity: .35 !important; cursor: not-allowed !important; box-shadow: none; transform: none; }

